DeepSeek模型:支持DeepSeek模型對話,文本輸入。
本文檔主要針對需要集成HTTP API的技術開發工程師,詳細描述DeepSeek模型的技術內容。
如果您有與我們商務合作的需求,可以通過以下方式聯系我們:
商務郵箱: AIcloud_Business@corp.youdao.com
如果您對文檔內容有任何疑問,可以通過以下幾種方式聯系我們:
客服QQ:1906538062
智云翻譯技術交流QQ 1群: 652880659
智云翻譯技術交流QQ 2群: 669384425
智云翻譯技術交流QQ 3群: 807539209
智云翻譯技術交流QQ 4群: 936752411
聯系郵箱: zhiyun@corp.youdao.com
溫馨提示:
應用ID
和 應用密鑰
,請按照新手指南 獲取。有道deepseek (可用手機號登錄體驗)
DeepSeek模型API HTTPS地址:
https://openapi.youdao.com/llmgateway/api/v1/chat/completions
調用方在集成大模型翻譯API時,請遵循以下規則。
規則 | 描述 |
---|---|
傳輸方式 | HTTPS |
請求方式 | POST |
請求格式 | application/json |
調用API需要向接口發送以下字段來訪問服務。
參數名稱 | 參數值 | 是否必須 | 示例 | 備注 |
---|---|---|---|---|
Content-Type | application/json | 是 | application/json | |
Authorization | Bearer ${api_key} | 是 | 在智云控制臺申請 | token鑒權 |
Body
名稱 | 類型 | 是否必須 | 默認值 | 備注 | 其他信息 |
---|---|---|---|---|---|
model | string | 必須 | 模型名稱 | ||
messages | object?[] | 必須 | 消息列表 | [ { "role": "system", "content": "You are a helpful assistant." }, { "role": "user", "content": "How's the weather in Hangzhou?" }, { "role": "assistant", "content": "", "tool_calls": [ { "id": "chatcmpl-tool-f6c2f72b91284f31b51988456cd9e8f0", "type": "function", "function": { "name": "get_weather", "arguments": "{\"location\":\"Hangzhou\"}" } } ] }, { "role": "tool", "tool_call_id": "chatcmpl-tool-f6c2f72b91284f31b51988456cd9e8f0", "content": "24℃" }, { "role": "assistant", "content": "The weather in Hangzhou is currently 24°C." } ] | |
stream | boolean | 非必須 | 是否流式返回:默認值 false | ||
stream_options | object | 非必須 | 流式響應時的配置 | 備注:?流式響應時的配置 | |
max_tokens | integer | 非必須 | 模型的最大tokens數量:默認值 4096,最大16k | ||
stop | string?[] | 非必須 | 模型遇到 stop 字段所指定的字符串時將停止繼續生成,這個詞語本身不會輸出。最多支持 4 個字符串。 | 類型:?string 或 string?[] | |
presence_penalty | number | 非必須 | 存在懲罰系數。如果值為正,會根據新 token 到目前為止是否出現在文本中對其進行懲罰,從而增加模型談論新主題的可能性。取值范圍為 [-2.0, 2.0]。 | ||
frequency_penalty | number | 非必須 | 頻率懲罰系數。如果值為正,會根據新 token 在文本中的出現頻率對其進行懲罰,從而降低模型逐字重復的可能性。取值范圍為 [-2.0, 2.0]。 | ||
temperature | number | 非必須 | 采樣溫度。控制了生成文本時對每個候選詞的概率分布進行平滑的程度。取值范圍為 [0, 2]。當取值為 0 時模型僅考慮對數概率最大的一個 token。較高的值(如 0.8)會使輸出更加隨機,而較低的值(如 0.2)會使輸出更加集中確定。通常建議僅調整 temperature 或 top_p 其中之一,不建議兩者都修改。 | ||
top_p | number | 非必須 | 核采樣概率閾值。模型會考慮概率質量在 top_p 內的 token 結果。取值范圍為 [0, 1]。當取值為 0 時模型僅考慮對數概率最大的一個 token。如 0.1 意味著只考慮概率質量最高的前 10% 的 token,取值越大生成的隨機性越高,取值越低生成的確定性越高。通常建議僅調整 temperature 或 top_p 其中之一,不建議兩者都修改。 | ||
logit_bias | object | 非必須 | 調整指定 token 在模型輸出內容中出現的概率,使模型生成的內容更加符合特定的偏好。logit_bias 字段接受一個 map 值,其中每個鍵為詞表中的 token ID(使用 tokenization 接口獲取),每個值為該 token 的偏差值,取值范圍為 [-100, 100]。-1 會減少選擇的可能性,1 會增加選擇的可能性;-100 會完全禁止選擇該 token,100 會導致僅可選擇該 token。該參數的實際效果可能因模型而異。 | 備注:?調整指定 token 在模型輸出內容中出現的概率,使模型生成的內容更加符合特定的偏好。logit_bias 字段接受一個 map 值,其中每個鍵為詞表中的 token ID(使用 tokenization 接口獲取),每個值為該 token 的偏差值,取值范圍為 [-100, 100]。 -1 會減少選擇的可能性,1 會增加選擇的可能性;-100 會完全禁止選擇該 token,100 會導致僅可選擇該 token。該參數的實際效果可能因模型而異。 | |
tools | object?[] | 非必須 | 待調用工具的列表,模型返回信息中可包含。當您需要讓模型返回待調用工具時,需要配置該結構體。 | [{ "type": "function", "function": { "name": "get_weather", "description": "Get weather of an location, the user shoud supply a location first", "parameters": { "type": "object", "properties": { "location": { "type": "string", "description": "The city and state, e.g. San Francisco, CA" } }, "required": ["location"] } } }] |
Body示例
{
"model": "deepseek-r1-250120",
"messages": [{
"role": "user",
"content": "你好,你是誰?"
}],
"stream": true,
"max_tokens": 1000,
"stream_options": {
"include_usage": true
},
"presence_penalty": 0,
"frequency_penalty": 0,
"temperature": 0,
"top_p": 0
}
1.點擊應用總覽-API Key
模型 | 版本 | 最大上下文長度 | 最大輸入長度(token) | 最大輸出長度 | 最大思考內容長度 | 刊例價(元/1M token) |
---|---|---|---|---|---|---|
DeepSeek-R1 | 實時 | 64k | 48k | 16k | 16k | 輸入:4元 輸出:16元 |
DeepSeek-V3 | 實時 | 64k | 48k | 16k | - | 輸入:2元 輸出:8元 |
{
"id": "chatcmpl-c26df7f617084d33b35bca90e632d35e",
"created": 1754381369,
"choices": [
{
"index": 0,
"finish_reason": "stop",
"delta": null,
"message": {
"role": "assistant",
"content": "\n\n您好!我是由中國的深度求索(DeepSeek)公司開發的智能助手DeepSeek-R1。如您有任何任何問題,我會盡我所能為您提供幫助。",
"reasoning_content": "您好!我是由中國的深度求索(DeepSeek)公司開發的智能助手DeepSeek-R1。如您有任何任何問題,我會盡我所能為您提供幫助。\n",
"tool_calls": []
}
}
],
"usage": {
"completion_tokens": 75,
"prompt_tokens": 4,
"total_tokens": 79,
"prompt_tokens_details": {
"cached_tokens": 0
},
"completion_tokens_details": {
"reasoning_tokens": 37
}
},
"model": "deepseek_r1",
"object": "chat.completion"
}
{
"code": 401,
"msg": "account overdue bills",
"request_id": "7da54d61-0b53-4695-9edd-4aea9de0dfc2"
}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"您好"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"!"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"我是"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"由"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"中國的"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"深度"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"求"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"索"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"("},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"Deep"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"Se"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"ek"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":")"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"公司"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"開發的"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"智能"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"助手"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"Deep"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"Se"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"ek"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"-R"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"1"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"。"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"如"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"您"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"有任何"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"任何"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"問題"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":","},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"我會"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"盡"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"我"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"所能"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"為您"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"提供"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"幫助"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"","reasoning_content":"。\n"},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"\n\n","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"您好","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"!","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"我是","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"由","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"中國的","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"深度","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"求","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"索","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"(","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"Deep","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"Se","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"ek","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":")","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"公司","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"開發的","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"智能","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"助手","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"Deep","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"Se","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"ek","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"-R","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"1","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"。","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"如","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"您","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"有任何","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"任何","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"問題","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":",","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"我會","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"盡","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"我","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"所能","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"為您","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"提供","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"幫助","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":null,"delta":{"role":"assistant","content":"。","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":"","reasoning_content":""},"message":null}],"usage":null,"model":"deepseek_r1","object":"chat.completion.chunk"}
data:{"id":"chatcmpl-b36905dcaff0451583b6fc4244fdadc4","created":1751271605,"choices":[],"usage":{"completion_tokens":75,"prompt_tokens":4,"total_tokens":79,"prompt_tokens_details":{"cached_tokens":0},"completion_tokens_details":{"reasoning_tokens":37}},"model":"deepseek_r1","object":"chat.completion.chunk"}
data:[DONE]
{
"code": 401,
"msg": "account overdue bills",
"request_id": "7da54d61-0b53-4695-9edd-4aea9de0dfc2"
}
錯誤碼 | 含義 |
---|---|
400 - 格式錯誤 | 原因:請求體格式錯誤解決方法:檢查入參格式是否正確,不是合法的JSON結構,content字段要求傳String,實際傳了Array,返回結構:返回Json結果示例如下 {"code": 400,"msg": "Request","request_id": "ac44d1fc-0daf-4035-8c4b-059c7f6bb221"} |
401 - 認證失敗 | 原因:API key 錯誤、無權限、賬戶余額不足,認證失敗.解決方法:請檢查您的 API key 是否正確是否在智云控制臺開通了deepseek權限賬戶余額是否充足.返回結構:返回Json結果示例如下: {"code": 401,"msg": "account overdue bills","request_id": "7da54d61-0b53-4695-9edd-4aea9de0dfc2"} |
422 - 業務異常 | 原因:參數異常、超時異常等,解決方法:請根據錯誤信息提示修改參數,或聯系我們解決.返回結構:返回Json結果示例如下:{"code": 100102,"msg": "USER_WRONG_MESSAGES_ROLE","request_id": "ac44d1fc-0daf-4035-8c4b-059c7f6bb259"} |
429 - 請求速率達到上限 | 因:請求速率(TPM 或 RPM)達到上限.解決方法:請合理規劃您的請求速率.返回結構:返回Json結果示例如下:{"code": 104203,"msg": "TPM exceed limit","request_id": "7da54d61-0b53-4695-9edd-4aea9de0dfc2"} |
500 - 服務器故障 | 原因:服務器內部故障.解決方法:請等待后重試。若問題一直存在,請聯系我們解決 |
Demo包含的編程語言:Curl、Python、Java、Node.js,請下載后使用 Demo