POST {username}/bots/{bot_id}/conversations/{conversation_id}/messages
"type": ("human" or "ai")
"data":{
"content": str
"additional_kwargs": dict
"example": (true or false)
}
Should append a single message to the conversation
Create a Pydantic model for a single message in backend/pydantic_models/conversations.py
type - should default to human
content - must be set
additional_kwargs - should default to empty dict
example - should default to False