AssistantLlamaMessage constructor

AssistantLlamaMessage(
  1. String content
)

Represents a chat message from the assistant.

The AssistantLlamaMessage class extends a base class with the provided content of the message.

Example usage:

var message = AssistantLlamaMessage('Hello, how can I assist you?');
print(message.content); // Output: Hello, how can I assist you?

Parameters:

  • content: The content of the chat message.

Implementation

AssistantLlamaMessage(super.content);