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.

Audits

Pass

Install

openclaw skills install turing-baidu-web-search

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)