namespace AIStudio.Provider.OpenAI;
///
/// Data structure representing a choice in a chat completion annotation response.
///
/// The index of the choice.
/// The delta information for the choice.
public record ChatCompletionAnnotationChoice(int Index, ChatCompletionAnnotationDelta Delta);