Messages Format
About markdown and PlainText
Last updated
About markdown and PlainText
Last updated
agent.send({
conversation_id: 'your-conversation-id',
text: 'Your plain text value',
});agent.send({
conversationId: 'your-conversation-id',
text: 'Your plain text value',
});from agentlabs.chat importMessageFormat
agent.send(
text="**My Text**",
format=MessageFormat.MARKDOWN,
conversation_id=self.conversation_id,
)agent.send({
conversationId: 'your-conversation-id',
text: 'Your plain text value',
format: 'Markdown'
});