对话补全
curl --request POST \
--url https://ai.alad.com/v1/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "deepseek-v4-pro",
"messages": [
{
"role": "user",
"content": "你好!"
}
],
"thinking": {},
"max_tokens": 2,
"response_format": {
"type": "text"
},
"stop": "<string>",
"stream": false,
"stream_options": {
"include_usage": true
},
"temperature": 1,
"top_p": 1,
"tools": [
{
"type": "function"
}
],
"frequency_penalty": 0,
"presence_penalty": 0,
"user_id": "<string>"
}
'import requests
url = "https://ai.alad.com/v1/chat/completions"
payload = {
"model": "deepseek-v4-pro",
"messages": [
{
"role": "user",
"content": "你好!"
}
],
"thinking": {},
"max_tokens": 2,
"response_format": { "type": "text" },
"stop": "<string>",
"stream": False,
"stream_options": { "include_usage": True },
"temperature": 1,
"top_p": 1,
"tools": [{ "type": "function" }],
"frequency_penalty": 0,
"presence_penalty": 0,
"user_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'deepseek-v4-pro',
messages: [{role: 'user', content: '你好!'}],
thinking: {},
max_tokens: 2,
response_format: {type: 'text'},
stop: '<string>',
stream: false,
stream_options: {include_usage: true},
temperature: 1,
top_p: 1,
tools: [{type: 'function'}],
frequency_penalty: 0,
presence_penalty: 0,
user_id: '<string>'
})
};
fetch('https://ai.alad.com/v1/chat/completions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://ai.alad.com/v1/chat/completions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'model' => 'deepseek-v4-pro',
'messages' => [
[
'role' => 'user',
'content' => '你好!'
]
],
'thinking' => [
],
'max_tokens' => 2,
'response_format' => [
'type' => 'text'
],
'stop' => '<string>',
'stream' => false,
'stream_options' => [
'include_usage' => true
],
'temperature' => 1,
'top_p' => 1,
'tools' => [
[
'type' => 'function'
]
],
'frequency_penalty' => 0,
'presence_penalty' => 0,
'user_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://ai.alad.com/v1/chat/completions"
payload := strings.NewReader("{\n \"model\": \"deepseek-v4-pro\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"你好!\"\n }\n ],\n \"thinking\": {},\n \"max_tokens\": 2,\n \"response_format\": {\n \"type\": \"text\"\n },\n \"stop\": \"<string>\",\n \"stream\": false,\n \"stream_options\": {\n \"include_usage\": true\n },\n \"temperature\": 1,\n \"top_p\": 1,\n \"tools\": [\n {\n \"type\": \"function\"\n }\n ],\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"user_id\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://ai.alad.com/v1/chat/completions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"deepseek-v4-pro\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"你好!\"\n }\n ],\n \"thinking\": {},\n \"max_tokens\": 2,\n \"response_format\": {\n \"type\": \"text\"\n },\n \"stop\": \"<string>\",\n \"stream\": false,\n \"stream_options\": {\n \"include_usage\": true\n },\n \"temperature\": 1,\n \"top_p\": 1,\n \"tools\": [\n {\n \"type\": \"function\"\n }\n ],\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"user_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://ai.alad.com/v1/chat/completions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model\": \"deepseek-v4-pro\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"你好!\"\n }\n ],\n \"thinking\": {},\n \"max_tokens\": 2,\n \"response_format\": {\n \"type\": \"text\"\n },\n \"stop\": \"<string>\",\n \"stream\": false,\n \"stream_options\": {\n \"include_usage\": true\n },\n \"temperature\": 1,\n \"top_p\": 1,\n \"tools\": [\n {\n \"type\": \"function\"\n }\n ],\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"user_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"created": 123,
"model": "deepseek-v4-pro",
"choices": [
{
"index": 123,
"message": {
"role": "assistant",
"content": "你好!有什么我可以帮助你的吗?",
"reasoning_content": "<string>",
"tool_calls": [
{
"id": "<string>",
"type": "function",
"function": {
"name": "<string>",
"arguments": "<string>"
}
}
]
},
"matched_stop": "<string>"
}
],
"usage": {
"prompt_tokens": 123,
"completion_tokens": 123,
"total_tokens": 123,
"prompt_tokens_details": {
"cached_tokens": 123,
"audio_tokens": 123,
"text_tokens": 123
},
"completion_tokens_details": {
"reasoning_tokens": 123,
"accepted_prediction_tokens": 123,
"rejected_prediction_tokens": 123
}
},
"system_fingerprint": "<string>"
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>"
}
}DeepSeek
deepseek-v4-pro
根据对话内容生成模型响应。
POST
/
v1
/
chat
/
completions
对话补全
curl --request POST \
--url https://ai.alad.com/v1/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "deepseek-v4-pro",
"messages": [
{
"role": "user",
"content": "你好!"
}
],
"thinking": {},
"max_tokens": 2,
"response_format": {
"type": "text"
},
"stop": "<string>",
"stream": false,
"stream_options": {
"include_usage": true
},
"temperature": 1,
"top_p": 1,
"tools": [
{
"type": "function"
}
],
"frequency_penalty": 0,
"presence_penalty": 0,
"user_id": "<string>"
}
'import requests
url = "https://ai.alad.com/v1/chat/completions"
payload = {
"model": "deepseek-v4-pro",
"messages": [
{
"role": "user",
"content": "你好!"
}
],
"thinking": {},
"max_tokens": 2,
"response_format": { "type": "text" },
"stop": "<string>",
"stream": False,
"stream_options": { "include_usage": True },
"temperature": 1,
"top_p": 1,
"tools": [{ "type": "function" }],
"frequency_penalty": 0,
"presence_penalty": 0,
"user_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'deepseek-v4-pro',
messages: [{role: 'user', content: '你好!'}],
thinking: {},
max_tokens: 2,
response_format: {type: 'text'},
stop: '<string>',
stream: false,
stream_options: {include_usage: true},
temperature: 1,
top_p: 1,
tools: [{type: 'function'}],
frequency_penalty: 0,
presence_penalty: 0,
user_id: '<string>'
})
};
fetch('https://ai.alad.com/v1/chat/completions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://ai.alad.com/v1/chat/completions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'model' => 'deepseek-v4-pro',
'messages' => [
[
'role' => 'user',
'content' => '你好!'
]
],
'thinking' => [
],
'max_tokens' => 2,
'response_format' => [
'type' => 'text'
],
'stop' => '<string>',
'stream' => false,
'stream_options' => [
'include_usage' => true
],
'temperature' => 1,
'top_p' => 1,
'tools' => [
[
'type' => 'function'
]
],
'frequency_penalty' => 0,
'presence_penalty' => 0,
'user_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://ai.alad.com/v1/chat/completions"
payload := strings.NewReader("{\n \"model\": \"deepseek-v4-pro\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"你好!\"\n }\n ],\n \"thinking\": {},\n \"max_tokens\": 2,\n \"response_format\": {\n \"type\": \"text\"\n },\n \"stop\": \"<string>\",\n \"stream\": false,\n \"stream_options\": {\n \"include_usage\": true\n },\n \"temperature\": 1,\n \"top_p\": 1,\n \"tools\": [\n {\n \"type\": \"function\"\n }\n ],\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"user_id\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://ai.alad.com/v1/chat/completions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"deepseek-v4-pro\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"你好!\"\n }\n ],\n \"thinking\": {},\n \"max_tokens\": 2,\n \"response_format\": {\n \"type\": \"text\"\n },\n \"stop\": \"<string>\",\n \"stream\": false,\n \"stream_options\": {\n \"include_usage\": true\n },\n \"temperature\": 1,\n \"top_p\": 1,\n \"tools\": [\n {\n \"type\": \"function\"\n }\n ],\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"user_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://ai.alad.com/v1/chat/completions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model\": \"deepseek-v4-pro\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"你好!\"\n }\n ],\n \"thinking\": {},\n \"max_tokens\": 2,\n \"response_format\": {\n \"type\": \"text\"\n },\n \"stop\": \"<string>\",\n \"stream\": false,\n \"stream_options\": {\n \"include_usage\": true\n },\n \"temperature\": 1,\n \"top_p\": 1,\n \"tools\": [\n {\n \"type\": \"function\"\n }\n ],\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"user_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"created": 123,
"model": "deepseek-v4-pro",
"choices": [
{
"index": 123,
"message": {
"role": "assistant",
"content": "你好!有什么我可以帮助你的吗?",
"reasoning_content": "<string>",
"tool_calls": [
{
"id": "<string>",
"type": "function",
"function": {
"name": "<string>",
"arguments": "<string>"
}
}
]
},
"matched_stop": "<string>"
}
],
"usage": {
"prompt_tokens": 123,
"completion_tokens": 123,
"total_tokens": 123,
"prompt_tokens_details": {
"cached_tokens": 123,
"audio_tokens": 123,
"text_tokens": 123
},
"completion_tokens_details": {
"reasoning_tokens": 123,
"accepted_prediction_tokens": 123,
"rejected_prediction_tokens": 123
}
},
"system_fingerprint": "<string>"
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>"
}
}授权
使用 Bearer 令牌进行身份验证。在 Starrise AI 控制台创建 API Key 后,以 Bearer YOUR_API_KEY 格式传入 Authorization 请求头。
请求体
application/json
模型 ID
可用选项:
deepseek-v4-pro 示例:
"deepseek-v4-pro"
对话消息列表。
Minimum array length:
1Show child attributes
Show child attributes
示例:
[{ "role": "user", "content": "你好!" }]
启用或禁用思考模式。
Show child attributes
Show child attributes
最大生成 Token 数。
必填范围:
x >= 1设为 {"type": "json_object"} 启用 JSON 模式。
Show child attributes
Show child attributes
触发停止生成的序列,最多 16 个。
为 true 时通过 SSE 流式返回结果。
流式选项,仅当 stream 为 true 时有效。
Show child attributes
Show child attributes
采样温度,值越高输出越随机。
必填范围:
0 <= x <= 2示例:
1
核采样阈值。
必填范围:
0 <= x <= 1模型可调用的工具列表,当前仅支持函数调用。
Show child attributes
Show child attributes
控制工具调用行为:none、auto、required 或指定函数。
可用选项:
none, auto, required DeepSeek 已弃用,传入无效。
必填范围:
-2 <= x <= 2DeepSeek 已弃用,传入无效。
必填范围:
-2 <= x <= 2自定义用户 ID,用于内容安全处理和 KVCache 缓存隔离。
Maximum string length:
512Pattern:
^[a-zA-Z0-9\-_]+$⌘I

