W

Skill 详情

web-search 网页搜索

通过inference.sh CLI使用Tavily和Exa进行网页搜索与内容提取。应用:Tavily搜索、Tavily提取、Exa搜索、Exa回答、Exa提取。功能:AI驱动的搜索、内容提取、直接答案提供、研究。用途:研究、RAG管道、事实核查、内容聚合、代理。触发条件:网页搜索、tavily、exa、搜索API、内容提取、研究、互联网搜索、AI搜索、搜索助手、网络爬取、RAG、perplexity替代方案

来源平台:ModelScope
来源标识:ModelScope/inference-sh/web-search
源文件:原始说明
SEO 与站长 超热门 ModelScope 中 风险 下载 1.9千访问 1.16万 ModelScopeGitHub Copilot
来源平台ModelScope
文档版本master
热度超热门
排名信号下载 1.9千
概述 安装 文档 下载

快速判断

通过inference.sh CLI使用Tavily和Exa进行网页搜索与内容提取。应用:Tavily搜索、Tavily提取、Exa搜索、Exa回答、Exa提取。功能:AI驱动的搜索、内容提取、直接答案提供、研究。用途:研究、RAG管道、事实核查、内容聚合、代理。触发条件:网页搜索、tavily、exa、搜索API、内容提取、研究、互联网搜索、AI搜索、搜索助手、网络爬取、RAG、perplexity替代方案

最后校验2026-05-18
来源平台ModelScope
安全提示
下载副本ZIP 可用

适合任务

  • 按 ModelScope 收录说明完成平台、开发或工作流任务。
  • 通过下载包离线保存 Skill 内容。
  • 结合下载量、访问量和喜欢数评估优先级。

输入与输出

输入:任务目标、上下文材料、平台信息、文件路径、约束条件或需要处理的内容。

输出:按 Skill 说明生成的文档、代码、检查结果、计划、建议或操作步骤。

示例任务

  • 使用 web-search 网页搜索 帮我完成当前任务,并先确认必要上下文。
  • 根据 web-search 网页搜索 的说明,列出操作步骤和风险检查点。

安装方式

  1. 下载本站提供的 Skill ZIP 并解压。
  2. 把解压后的 Skill 目录放入当前 AI 工具支持的 skills 目录。
  3. 如需在线查看原始内容,可打开 GitHub 的 SKILL.md

在线原始地址:modelscope-inference-sh-web-search/SKILL.md

风险边界

使用前请检查权限、外部依赖和要处理的数据类型。第三方平台数据、支付、部署、账号和密钥相关内容应先核对官方说明。

SKILL.md 文档介绍

Web Search & Extraction

Search the web and extract content via inference.sh CLI.

!Web Search & Extraction

Quick Start

> Requires inference.sh CLI (infsh). Get installation instructions: npx skills add inference-sh/skills@agent-tools

infsh login

# Search the web
infsh app run tavily/search-assistant --input '{"query": "latest AI developments 2024"}'

Available Apps

Tavily

| App | App ID | Description |

|-----|--------|-------------|

| Search Assistant | tavily/search-assistant | AI-powered search with answers |

| Extract | tavily/extract | Extract content from URLs |

Exa

| App | App ID | Description |

|-----|--------|-------------|

| Search | exa/search | Smart web search with AI |

| Answer | exa/answer | Direct factual answers |

| Extract | exa/extract | Extract and analyze web content |

Examples

Tavily Search

infsh app run tavily/search-assistant --input '{
  "query": "What are the best practices for building AI agents?"
}'

Returns AI-generated answers with sources and images.

Tavily Extract

infsh app run tavily/extract --input '{
  "urls": ["https://example.com/article1", "https://example.com/article2"]
}'

Extracts clean text and images from multiple URLs.

Exa Search

infsh app run exa/search --input '{
  "query": "machine learning frameworks comparison"
}'

Returns highly relevant links with context.

Exa Answer

infsh app run exa/answer --input '{
  "question": "What is the population of Tokyo?"
}'

Returns direct factual answers.

Exa Extract

infsh app run exa/extract --input '{
  "url": "https://example.com/research-paper"
}'

Extracts and analyzes web page content.

Workflow: Research + LLM

# 1. Search for information
infsh app run tavily/search-assistant --input '{
  "query": "latest developments in quantum computing"
}' > search_results.json

# 2. Analyze with Claude
infsh app run openrouter/claude-sonnet-45 --input '{
  "prompt": "Based on this research, summarize the key trends: <search-results>"
}'

Workflow: Extract + Summarize

# 1. Extract content from URL
infsh app run tavily/extract --input '{
  "urls": ["https://example.com/long-article"]
}' > content.json

# 2. Summarize with LLM
infsh app run openrouter/claude-haiku-45 --input '{
  "prompt": "Summarize this article in 3 bullet points: <content>"
}'

Use Cases

  • Research: Gather information on any topic
  • RAG: Retrieval-augmented generation
  • Fact-checking: Verify claims with sources
  • Content aggregation: Collect data from multiple sources
  • Agents: Build research-capable AI agents

Related Skills

# Full platform skill (all 150+ apps)
npx skills add inference-sh/skills@agent-tools

# LLM models (combine with search for RAG)
npx skills add inference-sh/skills@llm-models

# Image generation
npx skills add inference-sh/skills@ai-image-generation

Browse all apps: infsh app list

Documentation

建议反馈