ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

turing-baidu-web-search

Search the web via the Turing Baidu proxy. Use when the user asks to search the web in Chinese, look up real-time information from Chinese sources, research current events in China, or needs up-to-date data from Baidu Search. Run the bundled script via bash — do NOT construct HTTP requests manually.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/capreaaa/turing-baidu-web-search
Or

Baidu Web Search

Search the web via the Turing Baidu proxy API.

Usage

python3 ~/.openclaw/skills/turing-baidu-web-search/scripts.py '<JSON>'

Request Parameters

ParamTypeRequiredDefaultDescription
qstryesSearch query
countintno10Number of results to return
search_recency_filterstrnoRecency filter: week (7d), month (30d), semiyear (180d), year (365d)

Response Fields

FieldTypeDescription
results[].idintRank of the result
results[].titlestrPage title
results[].urlstrPage URL
results[].websitestrSource website name
results[].contentstrContent snippet
results[].datestrPublication date
results[].typestrContent type (e.g. web, news)

Examples

# Basic search
python3 ~/.openclaw/skills/turing-baidu-web-search/scripts.py '{"q": "今日A股行情"}'

# Limit results
python3 ~/.openclaw/skills/turing-baidu-web-search/scripts.py '{"q": "今日A股行情", "count": 5}'

# Recent results only (last 7 days)
python3 ~/.openclaw/skills/turing-baidu-web-search/scripts.py '{"q": "中证A50最新消息", "count": 10, "search_recency_filter": "week"}'

Configuration

Set in openclaw.json under skills.entries.turing-skills.env:

VariableRequiredDescription
TURING_API_KEYyesBearer token (sk-...)
TURING_CLIENTyesClient identifier
TURING_ENVIRONMENTyesEnvironment name
TURING_API_BASEnoAPI base URL (default: https://live-turing.cn.llm.tcljd.com)

Metadata

Author@capreaaa
Stars4072
Views1
Updated2026-04-13
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-capreaaa-turing-baidu-web-search": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.