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

11 lines
270 B
C#
Raw Normal View History

namespace AIStudio.Provider.OpenAI;
public sealed record ChatCompletionResponse
{
public string Id { get; init; } = string.Empty;
public string Model { get; init; } = string.Empty;
public IList<ChatCompletionResponseChoice> Choices { get; init; } = [];
}