未命名接口
POST
{{BASE_URL}}/claude/v1/complete请求参数
Header 参数
x-api-key
string
可选
示例值:
{{YOUR_API_KEY}}
Body 参数application/json
model
string
必需
messages
array [object {2}]
必需
role
string
可选
content
string
可选
max_tokens
integer
必需
system
string
必需
metadata
object
必需
user_id
string
必需
stop_sequences
array[string]
必需
stream
boolean
必需
temperature
integer
必需
top_k
integer
必需
top_p
integer
必需
示例
{
"model ": "string",
"messages ": [
{
"role": "string",
"content": "string"
}
],
"max_tokens": 0,
"system ": "string",
"metadata": {
"user_id": "string"
},
"stop_sequences": [
"string"
],
"stream": true,
"temperature": 0,
"top_k": 0,
"top_p": 0
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object {0}
示例
{}
最后修改时间: 3 个月前