- OpenAI
- Claude
- Midjourney
- 翻译
- 文心一言
- Stable Diffusion
内容完成接口 /v1/completions
POST
https://api.aigc2d.com/v1/completions
OpenAI
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
model
enum<string> <string>
模型名称
枚举值:
text-davinci-003text-davinci-002text-curie-001text-babbage-001text-ada-001
prompt
string
输入的提示
suffix
string <string>
可选
max_tokens
integer
可选
temperature
number <float32>
可选
top_p
number <float32>
可选
n
integer
生成内容的条数
stream
boolean
是否为流数据返回
logprobs
integer
可选
echo
boolean
可选
stop
array[string <string>]
可选
presence_penalty
number <float32>
可选
frequency_penalty
number <float32>
可选
best_of
integer
可选
logit_bias
object
可选
额外字段
integer
可选
user
string <string>
可选
示例
{
"model": "text-davinci-003",
"prompt": "Say this is a test"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.aigc2d.com/v1/completions' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "text-davinci-003",
"prompt": "Say this is a test"
}'
返回响应
🟢200成功
application/json
Body
id
string
必需
object
string
必需
created
integer
必需
model
string
使用的模型
choices
array [object {4}]
必需
text
string
响应的内容
index
integer
可选
logprobs
null
可选
finish_reason
string
可选
usage
object
消耗
prompt_tokens
integer
必需
completion_tokens
integer
必需
total_tokens
integer
必需
示例
{
"id": "cmpl-uqkvlQyYK7bGYrRHQ0eXlWi7",
"object": "text_completion",
"created": 1589478378,
"model": "text-davinci-003",
"choices": [
{
"text": "\n\nThis is indeed a test",
"index": 0,
"logprobs": null,
"finish_reason": "length"
}
],
"usage": {
"prompt_tokens": 5,
"completion_tokens": 7,
"total_tokens": 12
}
}
修改于 2023-06-26 10:48:38