Quick Start
Get started with Theazo
Get an agent running in under 60 seconds. Theazo handles compute, isolation, and billing.
Install the SDK
1Install the SDK
bash
npm install theazoRun your first agent
2Run your first agent
app.ts
import { Theazo } from 'theazo'
const theazo = new Theazo({ apiKey: 'th_live_...' })
// Create a session for your user
const session = await theazo.sessions.forUser('user_123', {
limits: {
maxCost: { amount: 500, currency: 'usd', period: 'day' },
maxAgents: 3,
}
})
// One-shot: create agent, run task, get result, destroy
const result = await session.run('researcher', 'analyze competitor pricing')
console.log(result.output) // '...'
console.log(result.artifacts) // ['/data/report.pdf']
console.log(result.cost) // { amount: 47, currency: 'usd' }That's it. Your agent gets its own isolated microVM with a dedicated kernel, browser, code runtime, and storage. You get observability, cost tracking, and per-user billing data automatically.
You need an API key from your Theazo dashboard. Sign up at theazo.com to get one.
Next up
Sessions
Per-user isolation, limits, and billing
Agents
Create, run, stream, pause, and resume
Workflows
Multi-agent pipelines with DAG execution
Fleets
Run the same agent across N inputs
Chat
Multi-turn conversations, threads, and context
Knowledge
RAG with pgvector, embeddings, and search
Tools & MCP
Built-in tools and MCP server connections
Scheduling
Cron jobs and webhook triggers
Observability
Logs, metrics, traces, and cost tracking
BYOI
Bring your own compute and model providers
Billing
Credits, budgets, and usage metering
API Reference
All REST endpoints and response formats