// <auto-generated/>
#nullable disable
using System;
using System.Collections.Generic;
namespace OpenAI.Chat
{
public partial class AssistantChatMessage : ChatMessage
{
internal AssistantChatMessage(string role, IList<ChatMessageContentPart> content, IDictionary<string, BinaryData> serializedAdditionalRawData, string participantName, IList<ChatToolCall> toolCalls, ChatFunctionCall functionCall) : base(role, content, serializedAdditionalRawData)
{
ParticipantName = participantName;
ToolCalls = toolCalls;
FunctionCall = functionCall;
}
public IList<ChatToolCall> ToolCalls { get; }
public ChatFunctionCall FunctionCall { get; init; }
}
}openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Generated/Models/AssistantChatMessage.cs
21lines · modepreview