Search the web and extract content via [inference.sh](https://inference.sh) CLI. ``` curl -fsSL https://cli.inference.sh | sh && infsh login
curl -fsSL https://cli.inference.sh | sh && infsh login # Search the web infsh app run tavily/search-assistant --input '{"query": "latest AI developments 2024"}'
tavily/search-assistanttavily/extractexa/searchexa/answerexa/extractinfsh app run tavily/search-assistant --input '{ "query": "What are the best practices for building AI agents?" }'
infsh app run tavily/extract --input '{ "urls": ["https://example.com/article1", "https://example.com/article2"] }'
infsh app run exa/search --input '{ "query": "machine learning frameworks comparison" }'
infsh app run exa/answer --input '{ "question": "What is the population of Tokyo?" }'
infsh app run exa/extract --input '{ "url": "https://example.com/research-paper" }'
# 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>" }'
# Full platform skill (all 150+ apps) npx skills add inference-sh/agent-skills@inference-sh # LLM models (combine with search for RAG) npx skills add inference-sh/agent-skills@llm-models # Image generation npx skills add inference-sh/agent-skills@ai-image-generation
infsh app list