namespace AIStudio.Provider.OpenAI; /// /// Data model for a choice made by the AI. /// /// The index of the choice. /// The delta text of the choice. public record ChatCompletionChoice(int Index, ChatCompletionDelta Delta) { public ChatCompletionChoice() : this(0, new (string.Empty)) { } }