AI-Studio/app/MindWork AI Studio/Provider/OpenAI/ChatCompletionAnnotationChoice.cs

8 lines
369 B
C#
Raw Normal View History

2025-09-03 08:08:04 +00:00
namespace AIStudio.Provider.OpenAI;
/// <summary>
/// Data structure representing a choice in a chat completion annotation response.
/// </summary>
/// <param name="Index">The index of the choice.</param>
/// <param name="Delta">The delta information for the choice.</param>
public record ChatCompletionAnnotationChoice(int Index, ChatCompletionAnnotationDelta Delta);