> ## 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 V4 Flash Vision Exp

> DeepSeek V4 Flash Vision Exp：面向圖像感知 Agent 的實驗性多模態模型。

DeepSeek V4 Flash Vision Exp 是支援視覺的實驗性 V4 Flash 路由，適合文字與圖片推理和 Agent 工作流程。

透過以下介面在 MixRoute 呼叫 `deepseek-v4-flash-vision-exp`。

## 核心能力

* 視覺輸入：支援文字與圖片內容
* 1M 上下文：支援長程多模態對話
* 最大輸出 384K：支援擴展推理與生成
* 工具與 Responses 相容：適合 Agent 工作流程

## 快速範例

<Tabs>
  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.mixroute.ai/v1/chat/completions" \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
      "model": "deepseek-v4-flash-vision-exp",
      "messages": [{
        "role": "user",
        "content": [
          {"type": "text", "text": "描述這張圖片。"},
          {"type": "image_url", "image_url": {"url": "https://example.com/image.jpg"}}
        ]
      }],
      "max_tokens": 256
    }'
    ```
  </Tab>
</Tabs>

## 參數

| 參數                 | 類型      | 必填 | 說明                                  |
| ------------------ | ------- | -- | ----------------------------------- |
| `model`            | string  | 是  | 固定為 `deepseek-v4-flash-vision-exp`。 |
| `messages`         | array   | 是  | 包含 role 與 content 的對話訊息。            |
| `image_url`        | object  | 否  | 公開 URL 或支援的編碼圖片輸入。                  |
| `max_tokens`       | integer | 否  | 最大生成 Token 數。                       |
| `reasoning_effort` | string  | 否  | 模型支援時設定推理強度。                        |
| `tools`            | array   | 否  | OpenAI 相容工具定義。                      |

## 廠商資料

* [DeepSeek 模型與定價](https://api-docs.deepseek.com/quick_start/pricing/)
