inference.sh 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