Run 250+ AI apps in the cloud with a simple CLI. No GPU required.
Install CLI
curl -fsSL https://cli.inference.sh | sh
infsh login
What does the installer do? The install script detects your OS and architecture, downloads the correct binary from dist.inference.sh, verifies its SHA-256 checksum, and places it in your PATH. That's it — no elevated permissions, no background processes, no telemetry. If you have cosign installed, the installer also verifies the Sigstore signature automatically.
Manual install (if you prefer not to pipe to sh):
# Download the binary and checksums
curl -LO https://dist.inference.sh/cli/checksums.txt
curl -LO $(curl -fsSL https://dist.inference.sh/cli/manifest.json | grep -o '"url":"[^"]*"' | grep $(uname -s | tr A-Z a-z)-$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/') | head -1 | cut -d'"' -f4)
# Verify checksum
sha256sum -c checksums.txt --ignore-missing
# Extract and install
tar -xzf inferencesh-cli-*.tar.gz
mv inferencesh-cli-* ~/.local/bin/inferencesh
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"}'
Local File Uploads
The CLI automatically uploads local files when you provide a path instead of a URL:
# Upscale a local image
infsh app run falai/topaz-image-upscaler --input '{"image": "/path/to/photo.jpg", "upscale_factor": 2}'
# Image-to-video from local file
infsh app run falai/wan-2-5-i2v --input '{"image": "./my-image.png", "prompt": "make it move"}'
# Avatar with local audio and image
infsh app run bytedance/omnihuman-1-5 --input '{"audio": "/path/to/speech.mp3", "image": "/path/to/face.jpg"}'
# Post tweet with local media
infsh app run x/post-create --input '{"text": "Check this out!", "media": "./screenshot.png"}'
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/skills@ai-image-generation
# Video generation (Veo, Seedance, Wan, OmniHuman)
npx skills add inference-sh/skills@ai-video-generation
# LLMs (Claude, Gemini, Kimi, GLM via OpenRouter)
npx skills add inference-sh/skills@llm-models
# Web search (Tavily, Exa)
npx skills add inference-sh/skills@web-search
# AI avatars & lipsync (OmniHuman, Fabric, PixVerse)
npx skills add inference-sh/skills@ai-avatar-video
# Twitter/X automation
npx skills add inference-sh/skills@twitter-automation
# Model-specific
npx skills add inference-sh/skills@flux-image
npx skills add inference-sh/skills@google-veo
# Utilities
npx skills add inference-sh/skills@image-upscaling
npx skills add inference-sh/skills@background-removal
Reference Files
- Authentication & Setup
- Discovering Apps
- Running Apps
- CLI Reference
Documentation
1---2name: agent-tools-23description: Run 250+ 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 250+ AI apps in the cloud with a simple CLI. No GPU required.910](https://cloud.inference.sh/app/files/u/4mg21r6ta37mpaz6ktzwtt8krr/01kgjw8atdxgkrsr8a2t5peq7b.jpeg)1112## Install CLI1314```bash15curl -fsSL https://cli.inference.sh | sh16infsh login17```1819> **What does the installer do?** The [install script](https://cli.inference.sh) detects your OS and architecture, downloads the correct binary from `dist.inference.sh`, verifies its SHA-256 checksum, and places it in your PATH. That's it — no elevated permissions, no background processes, no telemetry. If you have [cosign](https://docs.sigstore.dev/cosign/system_config/installation/) installed, the installer also verifies the Sigstore signature automatically.20>21> **Manual install** (if you prefer not to pipe to sh):22> ```bash23> # Download the binary and checksums24> curl -LO https://dist.inference.sh/cli/checksums.txt25> curl -LO $(curl -fsSL https://dist.inference.sh/cli/manifest.json | grep -o '"url":"[^"]*"' | grep $(uname -s | tr A-Z a-z)-$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/') | head -1 | cut -d'"' -f4)26> # Verify checksum27> sha256sum -c checksums.txt --ignore-missing28> # Extract and install29> tar -xzf inferencesh-cli-*.tar.gz30> mv inferencesh-cli-* ~/.local/bin/inferencesh31> ```3233## Quick Examples3435```bash36# Generate an image37infsh app run falai/flux-dev-lora --input '{"prompt": "a cat astronaut"}'3839# Generate a video40infsh app run google/veo-3-1-fast --input '{"prompt": "drone over mountains"}'4142# Call Claude43infsh app run openrouter/claude-sonnet-45 --input '{"prompt": "Explain quantum computing"}'4445# Web search46infsh app run tavily/search-assistant --input '{"query": "latest AI news"}'4748# Post to Twitter49infsh app run x/post-tweet --input '{"text": "Hello from AI!"}'5051# Generate 3D model52infsh app run infsh/rodin-3d-generator --input '{"prompt": "a wooden chair"}'53```5455## Local File Uploads5657The CLI automatically uploads local files when you provide a path instead of a URL:5859```bash60# Upscale a local image61infsh app run falai/topaz-image-upscaler --input '{"image": "/path/to/photo.jpg", "upscale_factor": 2}'6263# Image-to-video from local file64infsh app run falai/wan-2-5-i2v --input '{"image": "./my-image.png", "prompt": "make it move"}'6566# Avatar with local audio and image67infsh app run bytedance/omnihuman-1-5 --input '{"audio": "/path/to/speech.mp3", "image": "/path/to/face.jpg"}'6869# Post tweet with local media70infsh app run x/post-create --input '{"text": "Check this out!", "media": "./screenshot.png"}'71```7273## Commands7475| Task | Command |76|------|---------|77| List all apps | `infsh app list` |78| Search apps | `infsh app list --search "flux"` |79| Filter by category | `infsh app list --category image` |80| Get app details | `infsh app get google/veo-3-1-fast` |81| Generate sample input | `infsh app sample google/veo-3-1-fast --save input.json` |82| Run app | `infsh app run google/veo-3-1-fast --input input.json` |83| Run without waiting | `infsh app run <app> --input input.json --no-wait` |84| Check task status | `infsh task get <task-id>` |8586## What's Available8788| Category | Examples |89|----------|----------|90| **Image** | FLUX, Gemini 3 Pro, Grok Imagine, Seedream 4.5, Reve, Topaz Upscaler |91| **Video** | Veo 3.1, Seedance 1.5, Wan 2.5, OmniHuman, Fabric, HunyuanVideo Foley |92| **LLMs** | Claude Opus/Sonnet/Haiku, Gemini 3 Pro, Kimi K2, GLM-4, any OpenRouter model |93| **Search** | Tavily Search, Tavily Extract, Exa Search, Exa Answer, Exa Extract |94| **3D** | Rodin 3D Generator |95| **Twitter/X** | post-tweet, post-create, dm-send, user-follow, post-like, post-retweet |96| **Utilities** | Media merger, caption videos, image stitching, audio extraction |9798## Related Skills99100```bash101# Image generation (FLUX, Gemini, Grok, Seedream)102npx skills add inference-sh/skills@ai-image-generation103104# Video generation (Veo, Seedance, Wan, OmniHuman)105npx skills add inference-sh/skills@ai-video-generation106107# LLMs (Claude, Gemini, Kimi, GLM via OpenRouter)108npx skills add inference-sh/skills@llm-models109110# Web search (Tavily, Exa)111npx skills add inference-sh/skills@web-search112113# AI avatars & lipsync (OmniHuman, Fabric, PixVerse)114npx skills add inference-sh/skills@ai-avatar-video115116# Twitter/X automation117npx skills add inference-sh/skills@twitter-automation118119# Model-specific120npx skills add inference-sh/skills@flux-image121npx skills add inference-sh/skills@google-veo122123# Utilities124npx skills add inference-sh/skills@image-upscaling125npx skills add inference-sh/skills@background-removal126```127128## Reference Files129130- [Authentication & Setup](references/authentication.md)131- [Discovering Apps](references/app-discovery.md)132- [Running Apps](references/running-apps.md)133- [CLI Reference](references/cli-reference.md)134135## Documentation136137- [Agent Skills Overview](https://inference.sh/blog/skills/skills-overview) - The open standard for AI capabilities138- [Getting Started](https://inference.sh/docs/getting-started/introduction) - Introduction to inference.sh139- [What is inference.sh?](https://inference.sh/docs/getting-started/what-is-inference) - Platform overview140- [Apps Overview](https://inference.sh/docs/apps/overview) - Understanding the app ecosystem141- [CLI Setup](https://inference.sh/docs/extend/cli-setup) - Installing the CLI142- [Workflows vs Agents](https://inference.sh/blog/concepts/workflows-vs-agents) - When to use each143- [Why Agent Runtimes Matter](https://inference.sh/blog/agent-runtime/why-runtimes-matter) - Runtime benefits144