mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 18:12:15 +00:00
11 lines
264 B
C#
11 lines
264 B
C#
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();
|
|
}
|