返回模型列表
GLM Search Pro
zhipuzhipu/search-pro
BigModel 旗舰搜索引擎 — 更丰富的摘要,更深的覆盖。
search-pro 是智谱 BigModel 的旗舰联网搜索引擎。相较 search-std,它提供更丰富的内容摘要、更深的爬取覆盖与更优的长尾召回,且依然包装在 OpenAI 风格的 chat completion 信封中,可以无缝接入现有管线。
搭配一个小模型(glm-4.5-air、gpt-5-mini、claude-haiku 等)即可构建 RAG 风格的回答系统,无需自建爬虫或 embedding 存储。
更丰富的摘要
每条结果的 content 字段比 search-std 更长,answer body 直接出现在 annotation 中。
过滤器查询
支持标准字段 `search_recency_filter`、`search_domain_filter`、`content_size: high`。
可直接引用的输出
每条命中生成一个 `url_citation` annotation,`start_index` / `end_index` 按字节精确对齐 markdown body。
按次计费
$0.0108 每次调用。成本与结果体量无关,可预测。
适合使用
生产环境的 RAG、研究型 agent、回答引擎 — 需要稳健覆盖与可调过滤器的场景。
不适合使用
如果只需要链接标题,不在意摘要丰富度,search-std(成本低约 3 倍)已经够用。
计费方式:按次计费 $0.0108 per request。过滤器不额外计费。
阅读联网搜索教程 →上下文长度
8K
最大输出
--
请求价格按次
$0.0108每次请求
模态能力
文本→文本
价格明细
| 类型 | 费率 |
|---|---|
| 请求 | $0.0108 每次请求 |
支持参数
search_recency_filtersearch_domain_filtercontent_size
API 使用示例
所有新集成都应使用下方示例中的全球端点 api.therouter.ai;旧中国加速端点已下线。
cURL
curl https://api.therouter.ai/v1/chat/completions -H "Content-Type: application/json" -H "Authorization: Bearer $THE_ROUTER_API_KEY" -d '{
"model": "zhipu/search-pro",
"messages": [
{"role": "user", "content": "Summarize the key points from this input."}
]
}'