更新聊天机器人设置 - 常规
PATCH
/api/v0/chatbots/{chatbotId}/settings/general更新聊天机器人的常规设置
请求参数
Path 参数
chatbotId
string
必需
聊天机器人的 ID
Header 参数
Authorization
string
必需
示例值:
Bearer <token>
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
chatbotDescription
string
聊天机器人的描述
systemPrompt
string
可选
用它来改变聊天机器人的语气,并给出任何附加说明
userPrompt
string
可选
使用它来更改您在用户提示中向聊天机器人提供的指令
historyCount
integer
可选
回答问题时要考虑的历史消息数
gptModel
string
可选
所有可用的 GPT 型号
示例
{
"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"
}
示例代码
返回响应
成功(200)
请求有误(400)
没有权限(401)
禁止访问(403)
服务器错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
success
boolean
必需
message
string
必需
data
object
必需
示例
成功示例
{
"success": true,
"message": "Updated general settings of the chatbot successfully",
"data": {}
}
最后修改时间: 8 个月前