openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.1.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/Generated/Models/AssistantChatMessage.cs

22lines · modeblame

9f9f2936Jose Arriaga Maldonado2 years ago1// <auto-generated/>
2
3#nullable disable
4
5using System;
6using System.Collections.Generic;
7
8namespace OpenAI.Chat
9{
10public partial class AssistantChatMessage : ChatMessage
11{
31c2ba63Jose Arriaga Maldonado1 years ago12internal AssistantChatMessage(ChatMessageRole role, ChatMessageContent content, IDictionary<string, BinaryData> serializedAdditionalRawData, string refusal, string participantName, IList<ChatToolCall> toolCalls, ChatFunctionCall functionCall) : base(role, content, serializedAdditionalRawData)
9f9f2936Jose Arriaga Maldonado2 years ago13{
3467b535Travis Wilson1 years ago14Refusal = refusal;
9f9f2936Jose Arriaga Maldonado2 years ago15ParticipantName = participantName;
16ToolCalls = toolCalls;
17FunctionCall = functionCall;
18}
3467b535Travis Wilson1 years ago19
20public string Refusal { get; set; }
9f9f2936Jose Arriaga Maldonado2 years ago21}
22}