Run 150+ AI apps in the cloud with a simple CLI. No GPU required.
Install CLI
curl -fsSL https://cli.inference.sh | sh
infsh login
Quick Examples
# Generate an image
infsh app run falai/flux-dev-lora --input '{"prompt": "a cat astronaut"}'
# Generate a video
infsh app run google/veo-3-1-fast --input '{"prompt": "drone over mountains"}'
# Call Claude
infsh app run openrouter/claude-sonnet-45 --input '{"prompt": "Explain quantum computing"}'
# Web search
infsh app run tavily/search-assistant --input '{"query": "latest AI news"}'
# Post to Twitter
infsh app run x/post-tweet --input '{"text": "Hello from AI!"}'
# Generate 3D model
infsh app run infsh/rodin-3d-generator --input '{"prompt": "a wooden chair"}'
Commands
| Task |
Command |
| List all apps |
infsh app list |
| Search apps |
infsh app list --search "flux" |
| Filter by category |
infsh app list --category image |
| Get app details |
infsh app get google/veo-3-1-fast |
| Generate sample input |
infsh app sample google/veo-3-1-fast --save input.json |
| Run app |
infsh app run google/veo-3-1-fast --input input.json |
| Run without waiting |
infsh app run <app> --input input.json --no-wait |
| Check task status |
infsh task get <task-id> |
What's Available
| Category |
Examples |
| Image |
FLUX, Gemini 3 Pro, Grok Imagine, Seedream 4.5, Reve, Topaz Upscaler |
| Video |
Veo 3.1, Seedance 1.5, Wan 2.5, OmniHuman, Fabric, HunyuanVideo Foley |
| LLMs |
Claude Opus/Sonnet/Haiku, Gemini 3 Pro, Kimi K2, GLM-4, any OpenRouter model |
| Search |
Tavily Search, Tavily Extract, Exa Search, Exa Answer, Exa Extract |
| 3D |
Rodin 3D Generator |
| Twitter/X |
post-tweet, post-create, dm-send, user-follow, post-like, post-retweet |
| Utilities |
Media merger, caption videos, image stitching, audio extraction |
Related Skills
# Image generation (FLUX, Gemini, Grok, Seedream)
npx skills add inference-sh/agent-skills@ai-image-generation
# Video generation (Veo, Seedance, Wan, OmniHuman)
npx skills add inference-sh/agent-skills@ai-video-generation
# LLMs (Claude, Gemini, Kimi, GLM via OpenRouter)
npx skills add inference-sh/agent-skills@llm-models
# Web search (Tavily, Exa)
npx skills add inference-sh/agent-skills@web-search
# AI avatars & lipsync (OmniHuman, Fabric, PixVerse)
npx skills add inference-sh/agent-skills@ai-avatar-video
# Twitter/X automation
npx skills add inference-sh/agent-skills@twitter-automation
# Model-specific
npx skills add inference-sh/agent-skills@flux-image
npx skills add inference-sh/agent-skills@google-veo
# Utilities
npx skills add inference-sh/agent-skills@image-upscaling
npx skills add inference-sh/agent-skills@background-removal
Reference Files
- Authentication & Setup
- Discovering Apps
- Running Apps
- CLI Reference
Documentation
1---2name: agent-tools3description: Run 150+ AI apps via inference.sh CLI - image generation, video creation, LLMs, search, 3D, Twitter automation. Models: FLUX, Veo, Gemini, Grok, Claude, Seedance, OmniHuman, Tavily, Exa, OpenRouter, and many more. Use when running AI apps, generating images/videos, calling LLMs, web search, or automating Twitter. Triggers: inference.sh, infsh, ai model, run ai, serverless ai, ai api, flux, veo, claude api, image generation, video generation, openrouter, tavily, exa search, twitter api, grok4---56# [inference.sh](https://inference.sh)78Run 150+ AI apps in the cloud with a simple CLI. No GPU required.910## Install CLI1112```bash13curl -fsSL https://cli.inference.sh | sh14infsh login15```1617## Quick Examples1819```bash20# Generate an image21infsh app run falai/flux-dev-lora --input '{"prompt": "a cat astronaut"}'2223# Generate a video24infsh app run google/veo-3-1-fast --input '{"prompt": "drone over mountains"}'2526# Call Claude27infsh app run openrouter/claude-sonnet-45 --input '{"prompt": "Explain quantum computing"}'2829# Web search30infsh app run tavily/search-assistant --input '{"query": "latest AI news"}'3132# Post to Twitter33infsh app run x/post-tweet --input '{"text": "Hello from AI!"}'3435# Generate 3D model36infsh app run infsh/rodin-3d-generator --input '{"prompt": "a wooden chair"}'37```3839## Commands4041| Task | Command |42|------|---------|43| List all apps | `infsh app list` |44| Search apps | `infsh app list --search "flux"` |45| Filter by category | `infsh app list --category image` |46| Get app details | `infsh app get google/veo-3-1-fast` |47| Generate sample input | `infsh app sample google/veo-3-1-fast --save input.json` |48| Run app | `infsh app run google/veo-3-1-fast --input input.json` |49| Run without waiting | `infsh app run <app> --input input.json --no-wait` |50| Check task status | `infsh task get <task-id>` |5152## What's Available5354| Category | Examples |55|----------|----------|56| **Image** | FLUX, Gemini 3 Pro, Grok Imagine, Seedream 4.5, Reve, Topaz Upscaler |57| **Video** | Veo 3.1, Seedance 1.5, Wan 2.5, OmniHuman, Fabric, HunyuanVideo Foley |58| **LLMs** | Claude Opus/Sonnet/Haiku, Gemini 3 Pro, Kimi K2, GLM-4, any OpenRouter model |59| **Search** | Tavily Search, Tavily Extract, Exa Search, Exa Answer, Exa Extract |60| **3D** | Rodin 3D Generator |61| **Twitter/X** | post-tweet, post-create, dm-send, user-follow, post-like, post-retweet |62| **Utilities** | Media merger, caption videos, image stitching, audio extraction |6364## Related Skills6566```bash67# Image generation (FLUX, Gemini, Grok, Seedream)68npx skills add inference-sh/agent-skills@ai-image-generation6970# Video generation (Veo, Seedance, Wan, OmniHuman)71npx skills add inference-sh/agent-skills@ai-video-generation7273# LLMs (Claude, Gemini, Kimi, GLM via OpenRouter)74npx skills add inference-sh/agent-skills@llm-models7576# Web search (Tavily, Exa)77npx skills add inference-sh/agent-skills@web-search7879# AI avatars & lipsync (OmniHuman, Fabric, PixVerse)80npx skills add inference-sh/agent-skills@ai-avatar-video8182# Twitter/X automation83npx skills add inference-sh/agent-skills@twitter-automation8485# Model-specific86npx skills add inference-sh/agent-skills@flux-image87npx skills add inference-sh/agent-skills@google-veo8889# Utilities90npx skills add inference-sh/agent-skills@image-upscaling91npx skills add inference-sh/agent-skills@background-removal92```9394## Reference Files9596- [Authentication & Setup](references/authentication.md)97- [Discovering Apps](references/app-discovery.md)98- [Running Apps](references/running-apps.md)99- [CLI Reference](references/cli-reference.md)100101## Documentation102103- [Agent Skills Overview](https://inference.sh/blog/skills/agent-skills-overview) - The open standard for AI capabilities104- [Getting Started](https://inference.sh/docs/getting-started/introduction) - Introduction to inference.sh105- [What is inference.sh?](https://inference.sh/docs/getting-started/what-is-inference) - Platform overview106- [Apps Overview](https://inference.sh/docs/apps/overview) - Understanding the app ecosystem107- [CLI Setup](https://inference.sh/docs/extend/cli-setup) - Installing the CLI108- [Workflows vs Agents](https://inference.sh/blog/concepts/workflows-vs-agents) - When to use each109- [Why Agent Runtimes Matter](https://inference.sh/blog/agent-runtime/why-runtimes-matter) - Runtime benefits