mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 20:52:15 +00:00
11 lines
270 B
C#
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; } = [];
|
|
}
|