using System.Text.Json.Serialization;
namespace AIStudio.Provider.Requesty;
///
/// A data model for a Requesty model from the API.
///
/// The model's ID.
/// How much the model reads and writes in one conversation, in tokens.
public readonly record struct RequestyModel(string Id, [property: JsonPropertyName("context_window")] int? ContextWindowTokens);