Message Builder
class MessageBuilder
DSL for building a conversation history.
Appends messages to an internal list in call order. Each helper adds the matching concrete ChatMessage subtype.
Example:
client.chat {
system("You are a Kotlin expert")
user("What are coroutines?")
}Content copied to clipboard
Functions
Link copied to clipboard
Appends an AssistantMessage with the given content.
Link copied to clipboard
Appends a SystemMessage with the given content.
Link copied to clipboard
Appends a UserMessage with the given content.