更新聊天机器人提示
PATCH
/api/v0/chatbots/{chatbotId}/settings/prompts/{promptId}更新聊天机器人的自定义提示
请求参数
Path 参数
chatbotId
string
必需
聊天机器人的 ID
promptId
string
必需
聊天机器人提示的 ID
Header 参数
Authorization
string
必需
示例值:
Bearer <token>
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
title
string
提示的标题。
description
string
可选
有关提示的简短描述。
instructions
string
可选
生成响应时向 AI 指定的实际指令。
temperature
integer
可选
决定聊天机器人响应的创造力水平。 0 更集中,1 更有创意/随机。
示例
{
"title": "<string>",
"description": "<string>",
"instructions": "<string>",
"temperature": 123
}
示例代码
返回响应
成功(200)
请求有误(400)
没有权限(401)
禁止访问(403)
记录不存在(404)
服务器错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
success
boolean
必需
message
string
必需
data
object
必需
prompt
object
必需
示例
成功示例
{
"success": true,
"message": "Updated custom prompt of the chatbot successfully",
"data": {
"prompt": {
"id": "c50191ee-85d0-4f46-9448-3ab74441c9fb",
"title": "Random",
"description": "Prompt for random replies",
"instructions": "You are an AI assistant who provides random answers for all the questions asked.",
"temperature": 0.95
}
}
}
最后修改时间: 8 个月前