web-search-advanced-tweet

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Web Search Advanced - Tweet Category

高级网页搜索 - 推文分类

Tool Restriction (Critical)

工具限制(关键提示)

ONLY use
web_search_advanced_exa
with
category: "tweet"
. Do NOT use other categories or tools.
仅可在设置
category: "tweet"
的情况下调用
web_search_advanced_exa
,禁止使用其他分类或工具。

Filter Restrictions (Critical)

筛选限制(关键提示)

The
tweet
category has LIMITED filter support. The following parameters are NOT supported and will cause 400 errors:
  • includeText
    - NOT SUPPORTED
  • excludeText
    - NOT SUPPORTED
  • includeDomains
    - NOT SUPPORTED
  • excludeDomains
    - NOT SUPPORTED
  • moderation
    - NOT SUPPORTED (causes 500 server error)
tweet
分类的筛选支持有限。以下参数不被支持,使用会导致400错误:
  • includeText
    - 不支持
  • excludeText
    - 不支持
  • includeDomains
    - 不支持
  • excludeDomains
    - 不支持
  • moderation
    - 不支持(会导致500服务器错误)

Supported Parameters

支持的参数

Core

核心参数

  • query
    (required)
  • numResults
  • type
    ("auto", "fast", "deep", "neural")
  • query
    (必填)
  • numResults
  • type
    (可选值:"auto", "fast", "deep", "neural")

Date filtering (ISO 8601) - Use these instead of text filters!

日期筛选(遵循ISO 8601标准)——请使用这些参数替代文本筛选!

  • startPublishedDate
    /
    endPublishedDate
  • startCrawlDate
    /
    endCrawlDate
  • startPublishedDate
    /
    endPublishedDate
  • startCrawlDate
    /
    endCrawlDate

Content extraction

内容提取

  • textMaxCharacters
    /
    contextMaxCharacters
  • enableHighlights
    /
    highlightsNumSentences
    /
    highlightsPerUrl
    /
    highlightsQuery
  • enableSummary
    /
    summaryQuery
  • textMaxCharacters
    /
    contextMaxCharacters
  • enableHighlights
    /
    highlightsNumSentences
    /
    highlightsPerUrl
    /
    highlightsQuery
  • enableSummary
    /
    summaryQuery

Additional

其他参数

  • additionalQueries
    - useful for hashtag variations
  • livecrawl
    /
    livecrawlTimeout
    - use "preferred" for recent tweets
  • additionalQueries
    - 适用于搜索不同变体的话题标签
  • livecrawl
    /
    livecrawlTimeout
    - 搜索近期推文时建议设置为"preferred"

Token Isolation (Critical)

令牌隔离(关键提示)

Never run Exa searches in main context. Always spawn Task agents:
  • Agent calls
    web_search_advanced_exa
    with
    category: "tweet"
  • Agent merges + deduplicates results before presenting
  • Agent returns distilled output (brief markdown or compact JSON)
  • Main context stays clean regardless of search volume
切勿在主上下文环境中运行Exa搜索,务必生成Task代理:
  • 代理调用
    web_search_advanced_exa
    并设置
    category: "tweet"
  • 代理在呈现结果前合并并去重
  • 代理返回提炼后的输出内容(简洁的Markdown格式或紧凑JSON格式)
  • 无论搜索量多大,主上下文环境始终保持整洁

When to Use

使用场景

Use this category when you need:
  • Social discussions on a topic
  • Product announcements from company accounts
  • Developer opinions and experiences
  • Trending topics and community sentiment
  • Expert takes and threads
当你需要以下信息时,可使用该分类:
  • 某一话题的社交讨论内容
  • 企业账号发布的产品公告
  • 开发者的观点与体验
  • 热门话题及社区舆情
  • 行业专家的观点与推文线程

Examples

示例

Recent tweets on a topic:
web_search_advanced_exa {
  "query": "Claude Code MCP experience",
  "category": "tweet",
  "startPublishedDate": "2025-01-01",
  "numResults": 20,
  "type": "auto",
  "livecrawl": "preferred"
}
Search with specific keywords (put keywords in query, not includeText):
web_search_advanced_exa {
  "query": "launching announcing new open source release",
  "category": "tweet",
  "startPublishedDate": "2025-12-01",
  "numResults": 15,
  "type": "auto"
}
Developer sentiment (use specific query terms instead of excludeText):
web_search_advanced_exa {
  "query": "developer experience DX frustrating painful",
  "category": "tweet",
  "numResults": 20,
  "type": "deep",
  "livecrawl": "preferred"
}
搜索某话题的近期推文:
web_search_advanced_exa {
  "query": "Claude Code MCP experience",
  "category": "tweet",
  "startPublishedDate": "2025-01-01",
  "numResults": 20,
  "type": "auto",
  "livecrawl": "preferred"
}
使用特定关键词搜索(请将关键词放入query参数,而非includeText):
web_search_advanced_exa {
  "query": "launching announcing new open source release",
  "category": "tweet",
  "startPublishedDate": "2025-12-01",
  "numResults": 15,
  "type": "auto"
}
搜索开发者舆情(请使用特定查询词替代excludeText):
web_search_advanced_exa {
  "query": "developer experience DX frustrating painful",
  "category": "tweet",
  "numResults": 20,
  "type": "deep",
  "livecrawl": "preferred"
}

Output Format

输出格式

Return:
  1. Results (tweet content, author handle, date, engagement if visible)
  2. Sources (Tweet URLs)
  3. Notes (sentiment summary, notable accounts, threads vs single tweets)
Important: Be aware that tweet content can be informal, sarcastic, or context-dependent.
返回内容需包含:
  1. 结果(推文内容、作者账号、发布日期、可见的互动数据)
  2. 来源(推文链接)
  3. 说明(舆情摘要、值得关注的账号、推文线程 vs 单条推文)
重要提示:请注意,推文内容可能较为口语化、带有讽刺意味或依赖上下文语境。