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

11 lines
264 B
C#
Raw Normal View History

namespace AIStudio.Provider.OpenAI;
public sealed record ChatCompletionResponseChoice
{
public int Index { get; init; }
public string FinishReason { get; init; } = string.Empty;
public ChatCompletionResponseMessage Message { get; init; } = new();
}