mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 19:32:10 +00:00
13 lines
309 B
C#
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; }
|
|
}
|