> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mixroute.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# DeepSeek V3.2 Speciale

> DeepSeek V3.2 的高強度推理版本，面向高難度文本、數學和分析任務。

DeepSeek V3.2 的高強度推理版本，面向高難度文本、數學和分析任務。

## 模型資訊

| 欄位         | 說明                        |
| ---------- | ------------------------- |
| `model`    | deepseek-v3.2-speciale    |
| `endpoint` | POST /v1/chat/completions |

## 能力與使用

* Speciale 是獨立的推理版本，不是當前的 DeepSeek Flash 模型。
* 不要將標準 V3.2 的工具呼叫能力套用到 Speciale；使用不帶 tools 的文本請求。

## 請求示例

呼叫前設定 `MIXROUTE_API_KEY`。

```bash theme={null}
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 預算。           |

完整請求格式見[介面說明](/zh-hant/api-reference/endpoint/chat-openai)。
