ChatResponse Constructors

Definition

Overloads

ChatResponse()

Initializes a new instance of the ChatResponse class.

ChatResponse(ChatMessage)

Initializes a new instance of the ChatResponse class.

ChatResponse(IList<ChatMessage>)

Initializes a new instance of the ChatResponse class.

ChatResponse()

Source:
ChatResponse.cs

Initializes a new instance of the ChatResponse class.

public:
 ChatResponse();
public ChatResponse();
Public Sub New ()

Applies to

ChatResponse(ChatMessage)

Source:
ChatResponse.cs

Initializes a new instance of the ChatResponse class.

public:
 ChatResponse(Microsoft::Extensions::AI::ChatMessage ^ message);
public ChatResponse(Microsoft.Extensions.AI.ChatMessage message);
new Microsoft.Extensions.AI.ChatResponse : Microsoft.Extensions.AI.ChatMessage -> Microsoft.Extensions.AI.ChatResponse
Public Sub New (message As ChatMessage)

Parameters

message
ChatMessage

The response message.

Exceptions

message is null.

Applies to

ChatResponse(IList<ChatMessage>)

Source:
ChatResponse.cs

Initializes a new instance of the ChatResponse class.

public:
 ChatResponse(System::Collections::Generic::IList<Microsoft::Extensions::AI::ChatMessage ^> ^ messages);
public ChatResponse(System.Collections.Generic.IList<Microsoft.Extensions.AI.ChatMessage>? messages);
new Microsoft.Extensions.AI.ChatResponse : System.Collections.Generic.IList<Microsoft.Extensions.AI.ChatMessage> -> Microsoft.Extensions.AI.ChatResponse
Public Sub New (messages As IList(Of ChatMessage))

Parameters

messages
IList<ChatMessage>

The response messages.

Applies to