返回顶部

百度搜索百度搜索

通过百度 AI 搜索 API 进行网页搜索,获取实时信息和搜索结果。

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
162
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

百度搜索

🔍 百度搜索

Search the web with Baidu AI

通过百度 AI 搜索 API 进行网页搜索,获取中文互联网的实时信息。

Setup

bash
cd {baseDir}
echo BAIDUAPIKEY=your-api-key > .env
uv venv && uv pip install -e .[dev]
uv run --env-file .env uvicorn baidu_search.main:app --host 127.0.0.1 --port 8001

需要在 .env 或环境变量中设置 BAIDUAPIKEY。

获取 API Key

  1. 1. 访问 百度智能云控制台
  2. 创建应用获取 API Key

Quick Start

  1. 1. 检查服务: curl http://127.0.0.1:8001/ping
  1. 2. 搜索网页:
bash curl -X POST http://127.0.0.1:8001/search \ -H Content-Type: application/json \ -d { query: 北京有哪些旅游景区, top_k: 10 }
  1. 3. 带时间过滤的搜索:
bash curl -X POST http://127.0.0.1:8001/search \ -H Content-Type: application/json \ -d { query: 最新科技新闻, top_k: 5, recency_filter: week }
  1. 4. 限定网站搜索:
bash curl -X POST http://127.0.0.1:8001/search \ -H Content-Type: application/json \ -d { query: 天气预报, top_k: 5, site_filter: [www.weather.com.cn] }

API 参数

参数类型默认值说明
querystring必填搜索关键词
top_k
int | 10 | 返回结果数量 (1-20) | | recency_filter | string | null | 时间过滤: day, week, month, year | | site_filter | list | null | 限定搜索的网站列表 |

Response Format

json
{
results: [
{
title: 北京十大必去景点,
url: https://example.com/beijing-attractions,
snippet: 北京作为中国的首都,拥有众多著名景点...,
site_name: 旅游网
}
],
total: 10
}

Conversation Flow

  1. 1. 用户提问需要搜索的内容
  2. 判断是否需要时间过滤(如最新、今天等)
  3. 调用搜索 API 获取结果
  4. 整理并展示相关信息
  5. 可根据需要深入查看某个结果

使用场景

  • - 查询实时信息(新闻、天气、股票等)
  • 搜索中文互联网内容
  • 获取特定网站的信息
  • 时效性要求高的查询

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 official-baidu-search-1776188703 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 official-baidu-search-1776188703 技能

通过命令行安装

skillhub install official-baidu-search-1776188703

下载

⬇ 下载 百度搜索 v1.0.0(免费)

文件大小: 5.96 KB | 发布时间: 2026-4-17 15:34

v1.0.0 最新 2026-4-17 15:34
Initial release of the Baidu Search skill.

- Enables real-time web search using the Baidu AI Search API.
- Supports keyword, time-based, and site-specific queries.
- Requires a BAIDU_API_KEY for authentication.
- Provides concise API usage instructions and response formats.
- Suitable for retrieving news, weather, or other Chinese internet content.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部