模型信息
上下文和输出长度为模型规格;实际请求限制、可用性与计费取决于 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 预算。 |