POST
/
v1
/
chat
/
completions
curl --request POST \
  --url https://api.siliconstorm.ai/v1/chat/completions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "model": "DeepSeek-R1",
  "messages": [
    {
      "content": "写一段hello word并解释代码",
      "role": "user"
    }
  ],
  "stream": true
}'
{
  "id": "<string>",
  "object": "<string>",
  "created": 123,
  "model": "<string>",
  "choices": [
    {
      "index": 123,
      "delta": {
        "role": "<string>",
        "content": "<string>"
      },
      "finish_reason": "<string>"
    }
  ],
  "usage": {
    "prompt_tokens": 123,
    "completion_tokens": 123,
    "total_tokens": 123
  }
}

REST API 端点可以与本地运行的 MindsDB 一起使用 https://api.siliconstorm.ai/v1/chat/completions.

Authorizations

Authorization
string
header
required

使用以下格式进行身份验证:Bearer <your api key>

Body

application/json

The body is of type object.

Response

200 - application/json

返回示例

The response is of type object.