mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 18:40:22 +00:00
8 lines
369 B
C#
8 lines
369 B
C#
|
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);
|