conversationId``converstionId
curl --location --request POST 'http://dev-cn.your-api-server.com/api/v1/chat' \
--header 'Authorization: Bearer <Your-Secret-Key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"messages": [
{ "content": "How can I help you?", "role": "assistant" },
{ "content": "What is chatbase?", "role": "user" }
],
"chatbotId": "<Your Chatbot ID>",
"stream": false,
"temperature": 0,
"model": "gpt-3.5-turbo",
"conversationId": "<Conversation ID generated on your end>"
}'
{
"text": "Chatbase is an AI chatbot builder that lets you create a GPT-based chatbot that knows data."
}