openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Generated/Models/AssistantChatMessage.cs
22lines · modecode
| 1 | // <auto-generated/> |
| 2 | |
| 3 | #nullable disable |
| 4 | |
| 5 | using System; |
| 6 | using System.Collections.Generic; |
| 7 | |
| 8 | namespace OpenAI.Chat |
| 9 | { |
| 10 | public partial class AssistantChatMessage : ChatMessage |
| 11 | { |
| 12 | internal AssistantChatMessage(ChatMessageRole role, ChatMessageContent content, IDictionary<string, BinaryData> serializedAdditionalRawData, string refusal, string participantName, IList<ChatToolCall> toolCalls, ChatFunctionCall functionCall) : base(role, content, serializedAdditionalRawData) |
| 13 | { |
| 14 | Refusal = refusal; |
| 15 | ParticipantName = participantName; |
| 16 | ToolCalls = toolCalls; |
| 17 | FunctionCall = functionCall; |
| 18 | } |
| 19 | |
| 20 | public string Refusal { get; set; } |
| 21 | } |
| 22 | } |
| 23 | |