Message.assistant constructor

Message.assistant(
  1. String text
)

Create a simple text message from the assistant.

Implementation

factory Message.assistant(String text) =>
    Message(role: MessageRole.assistant, content: [TextBlock(text)]);