hy3。
核心能力
- 256K 上下文 - 最大输入 192K token,最大输出 128K token
- 代理工作流 - 针对编程代理、文档自动化和多步骤执行优化
- 推理与工具 - 支持保留式思考、结构化输出、函数调用和缓存
- 面向生产 - 相较预览路由强化任务完成度和工程可用性
快速示例
- cURL
- Python
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Hy3:腾讯混元 256K 上下文正式版模型,面向编程代理、长文档、搜索问答和复杂任务执行。
hy3。
curl "https://api.mixroute.ai/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "hy3",
"messages": [
{
"role": "user",
"content": "Review this deployment plan and identify the highest-risk assumption."
}
],
"max_tokens": 256
}'
from openai import OpenAI
client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.mixroute.ai/v1")
response = client.chat.completions.create(
model="hy3",
messages=[{"role": "user", "content": "Review this deployment plan and identify the highest-risk assumption."}],
max_tokens=256,
)
print(response.choices[0].message.content)
| Parameter | Type | 必填 | 说明 |
|---|---|---|---|
model | string | 是 | 模型 ID,固定为 hy3。 |
messages | array | 是 | 包含 role 与 content 的对话消息。 |
max_tokens | integer | 否 | 最大生成 token 数。 |
stream | boolean | 否 | 启用 SSE 流式输出。 |
reasoning_effort | string | 否 | 模型支持时使用的推理强度。 |
tools | array | 否 | OpenAI 兼容工具定义。 |