curl --request POST \
--url http://{your-domain}/v1/aibot/bots/{AgentId}/recommend-questions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "My Agent",
"introduction": "Agent introduction",
"agentSetting": "Agent settings",
"msg": "Hello",
"history": [
{
"role": "user",
"content": "This is a conversation message"
}
]
}
'