Completion (Legacy)
POST
/v1/completions这里仅给出示例,完整文档请查看官方文档:https://platform.openai.com/docs/api-reference/completions
请求参数
Body 参数application/x-www-form-urlencoded
model
string
模型名称
示例值:
gpt-3.5-turbo-instruct
prompt
string
Prompt
示例值:
Say this is a test.
max_tokens
string
可选
最大生成Tokens长度
示例值:
100
stream
string
是否流式返回
示例值:
false
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object {0}
示例
成功示例(NonStream)
{
"id": "cmpl-8Jdl0foXbnLIAObJnB0GSKUvAri0X",
"object": "text_completion",
"created": 1699691750,
"model": "gpt-3.5-turbo-instruct",
"choices": [
{
"text": "\n\nThis is a test.",
"index": 0,
"logprobs": null,
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 6,
"completion_tokens": 6,
"total_tokens": 12
}
}
最后修改时间: 1 年前