返回 Skill 列表
extension
分类: 内容与媒体无需 API Key

alphaear-search

执行金融网页搜索和本地上下文搜索。当用户需要从网络(Jina/DDG/百度)获取一般的金融信息,或需要从本地文档存储中检索金融信息(RAG)时使用。

person作者: jakexiaohubgithub

AlphaEar Search Skill

Overview

Unified search capabilities: web search (Jina/DDG/Baidu) and local RAG search.

Capabilities

1. Web Search

Use scripts/search_tools.py via SearchTools.

  • Search: search(query, engine, max_results)
    • Engines: jina, ddg, baidu, local.
    • Returns: JSON string (summary) or List[Dict] (via search_list).
  • Smart Cache (Agentic): If you want to avoid redundant searches, use the Search Cache Relevance Prompt in references/PROMPTS.md. Read the cache first and decide if it's usable.
  • Aggregate: aggregate_search(query)
    • Combines results from multiple engines.

2. Local RAG

Use scripts/hybrid_search.py or SearchTools with engine='local'.

  • Search: Searches local daily_news database.

Dependencies

  • duckduckgo-search, requests
  • scripts/database_manager.py (search cache & local news)