AI-Studio/app/MindWork AI Studio/Provider/OpenAI/ChatCompletionResponse.cs
2026-04-09 15:37:53 +02:00

11 lines
270 B
C#

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; } = [];
}