模型資訊
能力與使用
- Speciale 是獨立的推理版本,不是當前的 DeepSeek Flash 模型。
- 不要將標準 V3.2 的工具呼叫能力套用到 Speciale;使用不帶 tools 的文本請求。
請求示例
呼叫前設定MIXROUTE_API_KEY。
請求欄位
完整請求格式見介面說明。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
DeepSeek V3.2 的高強度推理版本,面向高難度文本、數學和分析任務。
| 欄位 | 說明 |
|---|---|
model | deepseek-v3.2-speciale |
endpoint | POST /v1/chat/completions |
MIXROUTE_API_KEY。
curl --request POST "https://api.mixroute.ai/v1/chat/completions" \
--header "Authorization: Bearer $MIXROUTE_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"model": "deepseek-v3.2-speciale",
"messages": [
{
"role": "user",
"content": "Explain the tradeoffs of database indexes."
}
],
"max_tokens": 1024
}'
| 欄位 | 說明 |
|---|---|
model | 必填,使用上方完整模型 ID。 |
messages | 必填,會話訊息包含 role 和 content。 |
max_tokens | 可選,輸出 token 預算。 |