mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-21 16:52:15 +00:00
11 lines
271 B
C#
11 lines
271 B
C#
|
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
|
||
|
|
public sealed record AssistantToolCallMessage : IMessageBase
|
||
|
|
{
|
||
|
|
public string Role { get; init; } = "assistant";
|
||
|
|
|
||
|
|
public string? Content { get; init; }
|
||
|
|
|
||
|
|
public IList<ChatCompletionToolCall> ToolCalls { get; init; } = [];
|
||
|
|
}
|