Class Message
public sealed class Message
- Inheritance
-
Message
- Inherited Members
Constructors
Message()
public Message()
Message(Role, IEnumerable<Content>, string)
Creates a new message to insert into a chat conversation.
public Message(Role role, IEnumerable<Content> content, string name = null)
Parameters
role
RoleThe Role of the author of this message.
content
IEnumerable<Content>The contents of the message.
name
string
Message(Role, string, string)
Creates a new message to insert into a chat conversation.
public Message(Role role, string content, string name = null)
Parameters
role
RoleThe Role of the author of this message.
content
stringThe contents of the message.
name
string
Message(Tool, IEnumerable<Content>)
[Obsolete("use overload with ToolCall")]
public Message(Tool tool, IEnumerable<Content> content)
Parameters
tool
Toolcontent
IEnumerable<Content>
Message(Tool, string)
[Obsolete("use overload with ToolCall")]
public Message(Tool tool, string content)
Parameters
Message(ToolCall, IEnumerable<Content>)
Creates a new message to insert into a chat conversation.
public Message(ToolCall toolCall, IEnumerable<Content> content)
Parameters
toolCall
ToolCallToolCall used for message.
content
IEnumerable<Content>Tool function response.
Message(ToolCall, string)
public Message(ToolCall toolCall, string content)
Parameters
Message(string, string, IEnumerable<Content>)
Creates a new message to insert into a chat conversation.
public Message(string toolCallId, string toolFunctionName, IEnumerable<Content> content)
Parameters
toolCallId
stringThe tool_call_id to use for the message.
toolFunctionName
stringName of the function call.
content
IEnumerable<Content>Tool function response.
Properties
AudioOutput
If the audio output modality is requested, this object contains data about the audio response from the model.
[JsonInclude]
[JsonPropertyName("audio")]
public AudioOutput AudioOutput { get; }
Property Value
Content
The contents of the message.
[JsonInclude]
[JsonPropertyName("content")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
public dynamic Content { get; }
Property Value
- dynamic
Name
Optional, The name of the author of this message.
May contain a-z, A-Z, 0-9, and underscores, with a maximum length of 64 characters.
[JsonInclude]
[JsonPropertyName("name")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string Name { get; }
Property Value
Refusal
The refusal message generated by the model.
[JsonInclude]
[JsonPropertyName("refusal")]
public string Refusal { get; }
Property Value
Role
The Role of the author of this message.
[JsonInclude]
[JsonPropertyName("role")]
public Role Role { get; }
Property Value
ToolCallId
[JsonInclude]
[JsonPropertyName("tool_call_id")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string ToolCallId { get; }
Property Value
ToolCalls
The tool calls generated by the model, such as function calls.
[JsonInclude]
[JsonPropertyName("tool_calls")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public IReadOnlyList<ToolCall> ToolCalls { get; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.
Operators
implicit operator string(Message)
public static implicit operator string(Message message)
Parameters
message
Message