最近更新时间:2026-03-02 21:33:03
AI搜索产品提供直达结果的搜索能力,相较于传统搜索,AI搜索结合大模型实现基于意图的搜索结果反馈。
多种提问模式:
“极速”模式(快速响应)、“极速·思考”模式(平衡速度与深度)、“长思考·R1”模式(深度推理)。
多样化搜索范围:
根据需要,可选择搜索范围,包括网页、文库、学术、视频、播客等,获取更具针对性的信息。
例如获取通用信息,可选择网页进行全网搜索;获取专业,可选择学术,将从数亿篇学术文献中筛选有用信息;希望查找和观看视频,则直接选择视频。
搜索结果总结:
基于搜索意图,采用大模型将搜索结果总结后呈现给用户。
附带来源:
在搜索页面将与搜索结果相关联的来源链接进行展示,方便用户查找来源资料。
从控制台进入星流平台后,选择“AI应用”,在左侧导航栏中选择“AI搜索”,在搜索框中输入您要查询的内容,选择对应的模式和搜索范围,执行搜索即可得到您需要的结果
search
请求参数
参数名称 | 类型 | 必填 | 描述 |
q | String | 是 | 搜索查询关键词 |
scope | String | 是 | 搜索范围,具体值有: webpage(网页)document(文库)scholar(学术)podcast(播客)video(视频) 默认为"webpage" |
includeSummary | boolean | 否 | 为true时会以网页的摘要信息匹配更多来源,默认为false |
page | integer | 否 | 页码,默认为1,当传入page参数时,同时表示每页的结果数量为10条。 |
size | integer | 否 | 本次取多少条结果,最大值200。size参数和page参数不可同时出现。 |
请求示例
curl --location --request POST 'http://search.aipro.ksyun.com/v1/aisearch/search' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer 6dcce5c5-e482-3059-b0a7-f253084a8a87' \
--data-raw '{
"q": "谁是这个世界上最美丽的女人",
"scope": "webpage",
"includeSummary": false,
"page": "1"
}'reader
请求参数
参数名称 | 类型 | 必填 | 描述 |
url | String | 是 | 搜要读取的网页URL |
请求示例
curl --location --request POST 'http://search.aipro.ksyun.com/v1/aisearch/reader' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer 6dcce5c5-e482-3059-b0a7-f253084a8a87' \
--data '{"url":"https://www.360doc.cn/article/70951250_986540329.html"}'chat
请求参数
参数名称 | 类型 | 必填 | 描述 |
messages | array | 否 | 对话消息数组 |
scope | String | 是 | 搜索范围,具体值有: webpage(网页)document(文库)scholar(学术)podcast(播客)image(图片)video(视频) 默认为"webpage" |
model | String | 否 | 使用模型: 不传或空串(快速模型,没有思维链,耗时较短) fast_thinking(快速思考模型,带有思维链,耗时中等) ds-r1(deepseek r1模型,耗时较长) 默认使用快速模型 |
请求示例
curl --location --request POST 'http://search.aipro.ksyun.com/v1/aisearch/chat' \
--header 'Authorization: Bearer 6dcce5c5-e482-3059-b0a7-f253084a8a87' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{"model":"fast","stream":true,"messages":[{"role":"user","content":"谁是这个世界上最美丽的女人"}]}'
纯净模式
