curl --location --request PATCH 'http://dev-cn.your-api-server.com/api/v0/chatbots//settings/general' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"chatbotDescription": "This is a test chatbot",
"systemPrompt": "You are a funny AI assistant and you answer the user queries based on the website content. Include jokes in your answer.",
"userPrompt": "You are an AI assistant who answers user questions based on the website content. Answer the questions in the same language as the language of the question.",
"historyCount": 4,
"gptModel": "gpt-3.5-turbo"
}'