openai-proxy
ClaudeOpenAIGoogle Bard
ClaudeOpenAIGoogle Bard
GitHub
  1. OpenAI
  • README
  • 查询 token 消耗量
    GET
  • Create chat completion
    POST
  • List models
    GET
  1. OpenAI

Create chat completion

AIHEY
https://openai.aihey.cc/openai
AIHEY
https://openai.aihey.cc/openai
POST
https://openai.aihey.cc/openai
/v1/chat/completions
更详细的参数说明请查看:https://platform.openai.com/docs/api-reference/chat/create

请求参数

Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
Header 参数
Content-Type
string 
可选
示例值:
application/json
Body 参数application/json
model
string 
必需
messages
array [object {2}] 
必需
role
string 
必需
默认值:
user
示例值:
userassistantsystemfunction
content
string 
必需
stream
boolean 
可选
temperature
integer 
可选
top_p
integer 
可选
示例
{
    "model": "gpt-3.5-turbo",
    "messages": [
        {
            "role": "system",
            "content": "You are a helpful assistant."
        },
        {
            "role": "user",
            "content": "Hello!"
        }
    ]
}

示例代码

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://openai.aihey.cc/openai/v1/chat/completions' \
--header 'Content-Type: application/json' \
--data-raw '{
    "model": "gpt-3.5-turbo",
    "messages": [
        {
            "role": "system",
            "content": "You are a helpful assistant."
        },
        {
            "role": "user",
            "content": "Hello!"
        }
    ]
}'

返回响应

🟢200成功
application/json
Body
id
string 
必需
object
string 
必需
created
integer 
必需
choices
array [object {3}] 
必需
index
integer 
可选
message
object 
可选
finish_reason
string 
可选
usage
object 
必需
prompt_tokens
integer 
必需
completion_tokens
integer 
必需
total_tokens
integer 
必需
示例
{
    "id": "chatcmpl-123",
    "object": "chat.completion",
    "created": 1677652288,
    "choices": [
        {
            "index": 0,
            "message": {
                "role": "assistant",
                "content": "\n\nHello there, how may I assist you today?",
            },
            "finish_reason": "stop"
        }
    ],
    "usage": {
        "prompt_tokens": 9,
        "completion_tokens": 12,
        "total_tokens": 21
    }
}
🟢200成功-Stream
上一页
查询 token 消耗量
下一页
List models
Built with