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

11 lines
262 B
C#

namespace AIStudio.Provider.OpenAI;
public sealed record ChatCompletionResponseMessage
{
public string Role { get; init; } = string.Empty;
public string? Content { get; init; }
public IList<ChatCompletionToolCall> ToolCalls { get; init; } = [];
}