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