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: infsh-cli3description: 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---5
6# [inference.sh](https://inference.sh)
7
8Run 250+ AI apps in the cloud with a simple CLI. No GPU required.
9
10](https://cloud.inference.sh/app/files/u/4mg21r6ta37mpaz6ktzwtt8krr/01kgjw8atdxgkrsr8a2t5peq7b.jpeg)
11
12## Install CLI
13
14```bash
15curl -fsSL https://cli.inference.sh | sh
16infsh login
17```
18
19> **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> ```bash
23> # Download the binary and checksums
24> curl -LO https://dist.inference.sh/cli/checksums.txt
25> 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 checksum
27> sha256sum -c checksums.txt --ignore-missing
28> # Extract and install
29> tar -xzf inferencesh-cli-*.tar.gz
30> mv inferencesh-cli-* ~/.local/bin/inferencesh
31> ```
32
33## Quick Examples
34
35```bash
36# Generate an image
37infsh app run falai/flux-dev-lora --input '{"prompt": "a cat astronaut"}'
38
39# Generate a video
40infsh app run google/veo-3-1-fast --input '{"prompt": "drone over mountains"}'
41
42# Call Claude
43infsh app run openrouter/claude-sonnet-45 --input '{"prompt": "Explain quantum computing"}'
44
45# Web search
46infsh app run tavily/search-assistant --input '{"query": "latest AI news"}'
47
48# Post to Twitter
49infsh app run x/post-tweet --input '{"text": "Hello from AI!"}'
50
51# Generate 3D model
52infsh app run infsh/rodin-3d-generator --input '{"prompt": "a wooden chair"}'
53```
54
55## Local File Uploads
56
57The CLI automatically uploads local files when you provide a path instead of a URL:
58
59```bash
60# Upscale a local image
61infsh app run falai/topaz-image-upscaler --input '{"image": "/path/to/photo.jpg", "upscale_factor": 2}'
62
63# Image-to-video from local file
64infsh app run falai/wan-2-5-i2v --input '{"image": "./my-image.png", "prompt": "make it move"}'
65
66# Avatar with local audio and image
67infsh app run bytedance/omnihuman-1-5 --input '{"audio": "/path/to/speech.mp3", "image": "/path/to/face.jpg"}'
68
69# Post tweet with local media
70infsh app run x/post-create --input '{"text": "Check this out!", "media": "./screenshot.png"}'
71```
72
73## Commands
74
75| 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>` |
85
86## What's Available
87
88| 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 |
97
98## Related Skills
99
100```bash
101# Image generation (FLUX, Gemini, Grok, Seedream)
102npx skills add inference-sh/skills@ai-image-generation
103
104# Video generation (Veo, Seedance, Wan, OmniHuman)
105npx skills add inference-sh/skills@ai-video-generation
106
107# LLMs (Claude, Gemini, Kimi, GLM via OpenRouter)
108npx skills add inference-sh/skills@llm-models
109
110# Web search (Tavily, Exa)
111npx skills add inference-sh/skills@web-search
112
113# AI avatars & lipsync (OmniHuman, Fabric, PixVerse)
114npx skills add inference-sh/skills@ai-avatar-video
115
116# Twitter/X automation
117npx skills add inference-sh/skills@twitter-automation
118
119# Model-specific
120npx skills add inference-sh/skills@flux-image
121npx skills add inference-sh/skills@google-veo
122
123# Utilities
124npx skills add inference-sh/skills@image-upscaling
125npx skills add inference-sh/skills@background-removal
126```
127
128## Reference Files
129
130- [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)
134
135## Documentation
136
137- [Agent Skills Overview](https://inference.sh/blog/skills/skills-overview) - The open standard for AI capabilities
138- [Getting Started](https://inference.sh/docs/getting-started/introduction) - Introduction to inference.sh
139- [What is inference.sh?](https://inference.sh/docs/getting-started/what-is-inference) - Platform overview
140- [Apps Overview](https://inference.sh/docs/apps/overview) - Understanding the app ecosystem
141- [CLI Setup](https://inference.sh/docs/extend/cli-setup) - Installing the CLI
142- [Workflows vs Agents](https://inference.sh/blog/concepts/workflows-vs-agents) - When to use each
143- [Why Agent Runtimes Matter](https://inference.sh/blog/agent-runtime/why-runtimes-matter) - Runtime benefits
144