AI-Studio/app/MindWork AI Studio/Provider/OpenAI/ChatCompletionResponseMessage.cs
2026-07-23 12:59:32 +02:00

13 lines
309 B
C#

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