模型資訊
上下文和輸出長度為模型規格;實際請求限制、可用性與計費取決於 MixRoute 路由。
能力與使用
- 支援文本和影像輸入,返回文本或工具呼叫內容塊。
- 始終啟用自適應思考。通過 output_config.effort 調節強度,預設為 medium;不要設定 thinking.type=disabled 或舊版 budget_tokens。
請求示例
呼叫前設定MIXROUTE_API_KEY。
請求欄位
完整請求格式見介面說明。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Claude Opus 系列模型,面向長程代理式程式設計和知識工作。
| 欄位 | 說明 |
|---|---|
model | claude-opus-5-5 |
context | 1M tokens |
max output | 128K tokens |
endpoint | POST /v1/messages |
MIXROUTE_API_KEY。
curl --request POST "https://api.mixroute.ai/v1/messages" \
--header "Authorization: Bearer $MIXROUTE_API_KEY" \
--header "Content-Type: application/json" \
--header "anthropic-version: 2023-06-01" \
--data '{
"model": "claude-opus-5-5",
"max_tokens": 1024,
"messages": [
{
"role": "user",
"content": "Explain the tradeoffs of database indexes."
}
]
}'
| 欄位 | 說明 |
|---|---|
model | 必填,使用上方完整模型 ID。 |
messages | 必填,會話訊息包含 role 和 content。 |
max_tokens | 必填,輸出 token 預算。 |