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