openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Generated/Models/AssistantChatMessage.cs
23lines · 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(ChatMessageContent content, Chat.ChatMessageRole role, IDictionary<string, BinaryData> additionalBinaryDataProperties, string refusal, string participantName, IList<ChatToolCall> toolCalls, ChatFunctionCall functionCall, ChatOutputAudioReference outputAudioReference) : base(content, role, additionalBinaryDataProperties) |
| 13 | { |
| 14 | Refusal = refusal; |
| 15 | ParticipantName = participantName; |
| 16 | ToolCalls = toolCalls; |
| 17 | FunctionCall = functionCall; |
| 18 | OutputAudioReference = outputAudioReference; |
| 19 | } |
| 20 | |
| 21 | public string Refusal { get; set; } |
| 22 | } |
| 23 | } |
| 24 | |