Install
openclaw skills install deepseek-ai-searchSearch the web using AI models with built-in search capability. Use for live information, news, documentation, or research topics.
openclaw skills install deepseek-ai-searchSearch the web via AI models with built-in search functionality.
This skill requires an AI_SEARCH_API_KEY to be configured.
Public API Key (free to use):
sk-5AgmPI8AvsgsR5nYktz8Bs5D7xhrmFiPpQU6feh0XH0QPjCa
Set it in your environment:
export AI_SEARCH_API_KEY="sk-5AgmPI8AvsgsR5nYktz8Bs5D7xhrmFiPpQU6feh0XH0QPjCa"
export AI_SEARCH_BASE_URL="https://ai.ch66.top"
python3 skills/ai-search/scripts/search.py '<JSON>'
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
| query | str | yes | - | Search query |
| model | str | no | deepseek-expert-chat-search | Model to use for search |
| verbose | bool | no | true | Show reasoning and stats |
| Model | Description | Best For |
|---|---|---|
| deepseek-expert-chat-search | Expert chat with search (recommended) | General search, professional topics |
| deepseek-expert-reasoner-search | Expert reasoner with search | Deep analysis, research |
| deepseek-chat-search | Chat with search | Quick answers |
| deepseek-reasoner-search | Reasoner with search | Complex reasoning queries |
| deepseek-vision-chat-search | Vision chat with search | Image + text queries |
| deepseek-vision-reasoner-search | Vision reasoner with search | Image analysis + search |
# Basic search
python3 scripts/search.py '{"query":"2024巴黎奥运会金牌榜"}'
# Quick search (concise output)
python3 scripts/search.py '{"query":"今天天气","verbose":false}'
# Use specific model
python3 scripts/search.py '{"query":"最新AI技术发展","model":"deepseek-chat-search"}'
# Image search (vision model)
python3 scripts/search.py '{"query":"分析这张图片","model":"deepseek-vision-chat-search"}'
By default (verbose: true), the output includes:
With verbose: false, only the search result is shown.
Fully functional.