inference.sh is an AI workspace where agents can actually do things. Put agents in charge of the busywork—they plan steps, pick the right tools or flows, and even generate small UI widgets when they need more input. You describe the goal. The agent handles the execution.
Key features:
- 100+ pre-built apps: Access image generation, audio transcription, text analysis, and more from the Grid
- Visual flow builder: Chain apps into multi-step workflows without code
- AI agents with tools: Create assistants that can actually execute tasks, not just chat
- Single API access: All apps accessible through one unified API with Python and JavaScript SDKs
- Real-time execution: Stream progress, logs, and results as they happen
- Run anywhere: Cloud workers for convenience, private workers for data control
- Model-native runtime: State, retries, monitoring—everything observable in one timeline
inference.sh enables developers and teams to build AI-powered workflows without managing infrastructure. Create agents that use tools, build pipelines that process data, and deploy everything with a single command.
For workspace features, see the Workspace Tour. For API access, see API & SDK.
Quick Example
Run an app with Python
1from inferencesh import inference2 3client = inference(api_key="inf_your_key")4 5result = client.run({6 "app": "infsh/stable-diffusion",7 "input": {"prompt": "A serene Japanese garden"}8})9 10print(result["output"]["images"][0]["uri"])Run an app with JavaScript
1import { inference } from '@inferencesh/sdk';2 3const client = inference({ apiKey: 'inf_your_key' });4 5const result = await client.run({6 app: 'infsh/stable-diffusion',7 input: { prompt: 'A serene Japanese garden' }8});9 10console.log(result.output.images[0].uri);Create an agent (in the workspace)
- Go to Agents → New Agent
- Choose an LLM (GPT-4, Claude)
- Add tools (stable-diffusion, whisper, etc.)
- Start chatting—the agent uses tools automatically
Next Steps
- Workspace Tour — See what's in the interface
- Your First Agent — Create an agent in 5 minutes
- Browse the Grid — Explore available apps
- API & SDK — Integrate programmatically