
🇺🇸 English

🇺🇸 English
- Chat Models
- Chat
- OpenAI-Realtime
- Completions
- Audio
- Image generation
- Embeddings
- Models
- Help
- Anthropic
- Suno
- Udio
- Midjourney API
- Flux
- Recraft
- Ideogram
- Luma
- Runway
- Kling-API
- Replicate
- MiniMax
Instruct
POST
/v1/completions
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
string
optional
Header Params
Authorization
string
optional
Example:
Bearer {{YOUR_API_KEY}}
string
optional
Body Params application/json
model
string
required
prompt
string
optional
生成完成的提示,编码为字符串、字符串数组、标记数组或标记数组数组。 请注意,<|endoftext|> 是模型在训练期间看到的文档分隔符,因此如果未指定提示,模型将生成新文档的开头。
max_tokens
integer
optional
max_tokens
不能超过模型的上下文长度。大多数模型的上下文长度为 2048 个标记(最新模型除外,它支持 4096)。temperature
integer
optional
top_p
但不是两者。top_p
integer
optional
temperature
但不是两者。n
integer
optional
max_tokens
和进行了合理的设置stop
。stream
boolean
optional
data: [DONE]
消息终止。logprobs
null
optional
logprobs
,以及所选标记。例如,如果logprobs
是 5,API 将返回 5 个最有可能的标记的列表。API 将始终返回采样令牌的 ,因此响应中logprob
最多可能有元素。logprobs+1
的最大值logprobs
为 5。如果您需要更多,请通过我们的帮助中心联系我们并描述您的用例。stop
string
optional
Example
{
"model": "gpt-3.5-turbo-instruct",
"prompt": "Say this is a test",
"max_tokens": 7,
"temperature": 0,
"top_p": 1,
"n": 1,
"stream": false,
"logprobs": null,
"stop": "\n"
}
Responses
🟢200Ok
application/json
Body
id
string
required
object
string
required
created
integer
required
model
string
required
choices
array [object {4}]
required
text
string
optional
index
integer
optional
logprobs
null
optional
finish_reason
string
optional
usage
object
required
prompt_tokens
integer
required
completion_tokens
integer
required
total_tokens
integer
required
Example
{
"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
}
}
Modified at 2025-02-05 11:13:08