← 返回
开发者工具 Key

Felo AI Search

AI-synthesized web search via Felo API — aggregates 15-40 sources into structured summaries. Use when: (1) researching a topic that needs multi-source synthe...
通过 Felo API 进行 AI 合成网络搜索,聚合 15-40 个来源生成结构化摘要。适用场景:(1)研究需综合多源信息的主题……
iml885203
开发者工具 clawhub v1.2.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 862
下载
💾 9
安装
1
版本
#latest

概述

Felo AI Search

Use Felo AI for comprehensive, AI-summarized web search when you need:

  • Multiple sources consolidated into structured insights
  • Trending topics with context (community scanning)
  • Research questions requiring cross-source synthesis

Do NOT use for:

  • Time-sensitive queries requiring exact timestamps
  • Single-source lookups (use web_fetch instead)
  • When speed is critical (Felo takes ~15 seconds vs web_search ~1 second)

Setup

  1. Sign up at felo.ai and get an API key from Settings → API Keys
  2. Store the key in one of these ways:
    • Environment variable (recommended): export FELO_API_KEY="your-key-here"
    • File (set strict permissions):

```bash

mkdir -p ~/.config/felo

echo "your-key-here" > ~/.config/felo/api_key

chmod 600 ~/.config/felo/api_key

```

Basic Usage

curl -s -X POST https://openapi.felo.ai/v2/chat \
  -H "Authorization: Bearer ${FELO_API_KEY:-$(cat ~/.config/felo/api_key 2>/dev/null)}" \
  -H "Content-Type: application/json" \
  -d '{"query": "Your search query here (1-2000 chars)"}' | jq .

Response Structure

{
  "status": "ok",
  "data": {
    "answer": "AI-generated summary...",
    "query_analysis": {
      "queries": ["optimized", "search", "terms"]
    },
    "resources": [
      {
        "link": "https://...",
        "title": "Source title",
        "snippet": "Relevant excerpt"
      }
    ]
  }
}

Key fields:

  • data.answer — AI-synthesized answer (use for summaries)
  • data.resources — Source links (typically 15-40 sources)

Common Patterns

Community Scanning

curl -s -X POST https://openapi.felo.ai/v2/chat \
  -H "Authorization: Bearer ${FELO_API_KEY:-$(cat ~/.config/felo/api_key 2>/dev/null)}" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "What are the top 5 trending topics in the OpenClaw AI agent community this week? Include specific discussions from Reddit, GitHub, X (Twitter), forums, and blogs. Provide source links."
  }' > /tmp/felo_result.json

ANSWER=$(jq -r '.data.answer' /tmp/felo_result.json)
SOURCES=$(jq -r '.data.resources[0:10] | .[] | "- [\(.title)](\(.link))"' /tmp/felo_result.json)
SOURCE_COUNT=$(jq '.data.resources | length' /tmp/felo_result.json)

Rate Limits

  • Default: 100 requests/minute per API key
  • Response headers: X-RateLimit-*
  • Handle 429 errors with exponential backoff

Error Handling

Common errors:

  • INVALID_API_KEY (401) — Check your API key
  • QUERY_TOO_LONG (400) — Max 2000 chars
  • RATE_LIMIT_EXCEEDED (429) — Slow down requests

When to Use vs web_search

Use CaseToolReason
------------------------
Community trends (5+ sources)FeloAI synthesis, broader coverage
Specific site searchweb_searchPrecise site: operator
Need timestampsweb_searchFelo has no time metadata
Cross-source analysisFeloAI-generated insights
Speed-criticalweb_search~1s vs ~15s

Notes

  • Felo returns 15-40 sources but no timestamps
  • Query can include time hints ("this week", "recent") but results are not guaranteed to be time-filtered
  • Best for trend detection and topic synthesis, not time-sensitive monitoring

版本历史

共 1 个版本

  • v1.2.0 当前
    2026-03-29 11:10 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 323,998
content-creation

YouTube Transcribe

iml885203
{"answer": "智能回退转录 YouTube 视频:优先提取字幕(快速免费),无字幕时回退至本地 Whisper 转录。"}
★ 0 📥 624
developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,769