> ## 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.

# Claude Opus 4.5

> Claude Opus 4.5：面向進階程式設計、代理與複雜分析的模型。包含 MixRoute 呼叫範例與參數。

Claude Opus 4.5 是 Anthropic 推出的面向進階程式設計、代理與複雜分析的模型。

可透過 MixRoute 的 Anthropic 相容 Messages API 呼叫 `claude-opus-4-5`，同時支援 OpenAI 相容的 Chat Completions API。

## 核心能力

* Messages API - 使用 Anthropic 原生請求與回應格式
* OpenAI 相容 - 也可透過 Chat Completions 呼叫
* 串流輸出 - 透過 SSE 增量返回內容
* 系統提示詞 - 使用頂層 system 指令
* 工具呼叫 - 支援 Anthropic 工具定義

## 快速範例

### Messages API

<Tabs>
  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.mixroute.ai/v1/messages" \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "anthropic-version: 2023-06-01" \
      -H "Content-Type: application/json" \
      -d '{
      "model": "claude-opus-4-5",
      "max_tokens": 256,
      "messages": [
        {
          "role": "user",
          "content": "Explain quantum entanglement in simple terms."
        }
      ]
    }'
    ```
  </Tab>

  <Tab title="Python">
    ```python theme={null}
    from anthropic import Anthropic

    client = Anthropic(api_key="YOUR_API_KEY", base_url="https://api.mixroute.ai")

    message = client.messages.create(
        model="claude-opus-4-5",
        max_tokens=256,
        messages=[{"role": "user", "content": "Explain quantum entanglement in simple terms."}],
    )

    print(message.content[0].text)
    ```
  </Tab>

  <Tab title="Streaming">
    ```python theme={null}
    from anthropic import Anthropic

    client = Anthropic(api_key="YOUR_API_KEY", base_url="https://api.mixroute.ai")

    with client.messages.stream(
        model="claude-opus-4-5",
        max_tokens=256,
        messages=[{"role": "user", "content": "Write a short poem about the sea."}],
    ) as stream:
        for text in stream.text_stream:
            print(text, end="")
    ```
  </Tab>
</Tabs>

### OpenAI 相容 API

<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": "claude-opus-4-5",
      "messages": [
        {
          "role": "user",
          "content": "Explain quantum entanglement in simple terms."
        }
      ],
      "max_tokens": 256
    }'
    ```
  </Tab>

  <Tab title="Python">
    ```python theme={null}
    from openai import OpenAI

    client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.mixroute.ai/v1")

    response = client.chat.completions.create(
        model="claude-opus-4-5",
        messages=[{"role": "user", "content": "Explain quantum entanglement in simple terms."}],
        max_tokens=256,
    )

    print(response.choices[0].message.content)
    ```
  </Tab>

  <Tab title="Streaming">
    ```python theme={null}
    from openai import OpenAI

    client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.mixroute.ai/v1")

    stream = client.chat.completions.create(
        model="claude-opus-4-5",
        messages=[{"role": "user", "content": "Write a short poem about the sea."}],
        max_tokens=256,
        stream=True,
    )

    for chunk in stream:
        print(chunk.choices[0].delta.content or "", end="")
    ```
  </Tab>
</Tabs>

## 參數

### Messages API

| 參數           | 類型              | 必填 | 說明                       |
| ------------ | --------------- | -- | ------------------------ |
| `model`      | string          | 是  | 固定為 `claude-opus-4-5`。   |
| `messages`   | array           | 是  | 包含 role 與 content 的輸入訊息。 |
| `max_tokens` | integer         | 是  | 最大生成 token 數。            |
| `system`     | string \| array | 否  | 頂層系統指令。                  |
| `stream`     | boolean         | 否  | 啟用 SSE 串流輸出。             |
| `tools`      | array           | 否  | Anthropic 工具定義。          |
| `thinking`   | object          | 否  | 模型支援時使用的擴展思考設定。          |

### OpenAI 相容 API

| 參數            | 類型              | 必填 | 說明                       |
| ------------- | --------------- | -- | ------------------------ |
| `model`       | string          | 是  | 固定為 `claude-opus-4-5`。   |
| `messages`    | array           | 是  | 包含 role 與 content 的對話訊息。 |
| `max_tokens`  | integer         | 否  | 最大生成 token 數。            |
| `stream`      | boolean         | 否  | 啟用 SSE 串流輸出，預設 false。    |
| `temperature` | number          | 否  | 模型支援時用於控制取樣隨機性。          |
| `top_p`       | number          | 否  | 模型支援時使用的核取樣閾值。           |
| `stop`        | string \| array | 否  | 觸發停止生成的序列。               |
| `tools`       | array           | 否  | OpenAI 相容工具定義。           |
