Message.assistant constructor
Message.assistant(
- String text
Create a simple text message from the assistant.
Implementation
factory Message.assistant(String text) =>
Message(role: MessageRole.assistant, content: [TextBlock(text)]);