DeepSeek AI Search

Search the web using AI models with built-in search capability. Use for live information, news, documentation, or research topics.

Audits

Pass

Install

openclaw skills install deepseek-ai-search

AI Search

Search the web via AI models with built-in search functionality.

Prerequisites

API Key Configuration

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"

Usage

python3 skills/ai-search/scripts/search.py '<JSON>'

Request Parameters

ParamTypeRequiredDefaultDescription
querystryes-Search query
modelstrnodeepseek-expert-chat-searchModel to use for search
verboseboolnotrueShow reasoning and stats

Available Search Models

ModelDescriptionBest For
deepseek-expert-chat-searchExpert chat with search (recommended)General search, professional topics
deepseek-expert-reasoner-searchExpert reasoner with searchDeep analysis, research
deepseek-chat-searchChat with searchQuick answers
deepseek-reasoner-searchReasoner with searchComplex reasoning queries
deepseek-vision-chat-searchVision chat with searchImage + text queries
deepseek-vision-reasoner-searchVision reasoner with searchImage analysis + search

Examples

# 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"}'

Response Format

By default (verbose: true), the output includes:

  • 推理过程 (Reasoning): Model's thinking process
  • 搜索结果 (Search Result): Final answer
  • 使用统计 (Usage Stats): Token consumption

With verbose: false, only the search result is shown.

Current Status

Fully functional.