openai-proxy
Claude
OpenAI
Google Bard
openai-proxy
  • README
  • 创建会话POST
  • 获取全部会话GET
  • 删除指定会话DELETE
  • 删除全部会话DELETE
  • 查看会话中历史消息GET
  • 生成 AI 回复POST
  • 重新生成 AI 回复POST
  • 生成 AI 回复(类 OpenAI)POST
  • 生成 AI 回复-指定 conversion(类 OpenAI)POST
Powered by Apifox

重新生成 AI 回复

POST/retry_message

请求参数

Header 参数
Content-Type
string 
可选
示例值:
application/json
Accept
string 
可选
示例值:
text/event-stream
Cookie 参数
sessionKey
string 
可选

你的 sessionKey,请从 claude.ai 获取

Body 参数 (application/json)
completion
object {3} 
必需
prompt
string 
空值
必需
timezone
string 
必需
model
string 
必需
organization_uuid
string 
必需
conversation_uuid
string 
必需
text
string 
空值
必需
示例
{
  "completion": {
    "prompt": "",
    "timezone": "Asia/Shanghai",
    "model": "claude-2"
  },
  "organization_uuid": "dca2a902-a463-41f0-88cb-b047deb40178",
  "conversation_uuid": "5446798e-0e11-4e8f-994c-3d8386f01bd6",
  "text": ""
}

示例代码

返回响应

成功(200)
HTTP 状态码: 200
内容格式: JSON
数据结构
object {0}
示例
我是一个由Anthropic公司开发的AI助手。请告诉我,我今天能为你做些什么?
修改时间 5 个月前
上一页
POST生成 AI 回复
下一页
POST生成 AI 回复(类 OpenAI)