Skip to content

OpenAI 兼容接口

One-Token ICU 提供 OpenAI-compatible API 入口。

Chat Completions

http
POST https://one-token.icu/v1/chat/completions
Authorization: Bearer sk-your-api-key
Content-Type: application/json

请求示例:

json
{
  "model": "gpt-4o-mini",
  "messages": [
    { "role": "user", "content": "你好" }
  ],
  "stream": false
}

流式输出

json
{
  "model": "gpt-4o-mini",
  "messages": [
    { "role": "user", "content": "请写一首短诗" }
  ],
  "stream": true
}