← 返回
未分类 Key 中文

Tavily

Connect agents to the web using Tavily APIs and SDKs. Use for executing search, scraping URLs, semantic crawls, mapping sites, and asynchronous deep research...
使用 Tavily API 和 SDK 将代理接入网络,实现搜索、URL 抓取、语义爬取、站点映射和异步深度研究等功能。
simonpierreboucher02
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 167
下载
💾 0
安装
1
版本
#latest

概述

Tavily Skill

This skill extends Manus's capabilities by providing highly specialized workflows, reference guides, and helper scripts to integrate Tavily's search, extraction, and research APIs. It is designed to be highly token-efficient, leveraging progressive disclosure.

Quick Navigation

  • Core Search & RAG Workflow: See workflows.md for step-by-step sequential patterns.
  • API Reference & Specifications: See api_reference.md for endpoint details, parameter ranges, and JSON schemas.
  • Troubleshooting & Diagnostics: See troubleshooting.md for diagnostic checklists and error handling strategies.

Basic Principles

1. Match Search Depth to Query Complexity

  • Use basic (1 credit) for simple queries (e.g., factual lookups, company names).
  • Use advanced (2 credits) for complex research questions requiring multi-query expansion and synthesis.
  • Use fast or ultra-fast (1 credit) for latency-critical applications (e.g., real-time chat, voice assistants).

2. Prefer Extract over Raw Search for RAG

  • Avoid downloading full HTML or uncleaned pages.
  • Use the Extract API with query to trigger Intent-Based Extraction.
  • Limit the chunks returned per source using chunks_per_source (range: 1 to 5) to save downstream LLM context window tokens.

3. Handle Rate Limits Gracefully

  • Development keys are capped at 100 RPM. Production keys are capped at 1,000 RPM.
  • Always wrap Tavily API calls in a retry wrapper that parses the retry-after header during 429 Too Many Requests responses.

Code Boilerplate

Synchronous Python Search

from tavily import TavilyClient

client = TavilyClient(api_key="tvly-YOUR_API_KEY")
response = client.search(
    query="quantum computing trends 2026",
    search_depth="advanced",
    max_results=5
)

Asynchronous Python Extract

import asyncio
from tavily import AsyncTavilyClient

async def extract_links():
    client = AsyncTavilyClient(api_key="tvly-YOUR_API_KEY")
    response = await client.extract(
        urls=["https://example.com/ai-agents"],
        query="agent orchestration",
        chunks_per_source=3
    )
    return response

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-06-01 21:25

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

Open Alex

simonpierreboucher02
利用 OpenAlex 进行元数据查询,无需 API 密钥,即可查找并引用学术作品、作者、机构和趋势。
★ 0 📥 196
developer-tools

EODHD API

simonpierreboucher02
提供与EODHD(EOD历史数据)API交互的工具和工作流程,用于获取金融数据。使用此技能可以获取市场数据、基本面数据等。
★ 1 📥 550

Intuit-quickbook

simonpierreboucher02
生产级QuickBooks Online API 集成与自动化,涵盖 OAuth 2.0 认证及会计实体(客户、发票、付款等)。
★ 0 📥 195