Get Started
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 theazo

Run your first agent

2Run your first agent
app.ts
import { Theazo } from class="cb-str">'theazo'

const theazo = new Theazo({ apiKey: class="cb-str">'th_live_...' })

// Create a session for your user
const session = await theazo.sessions.forUser(class="cb-str">'user_123', {
  limits: {
    maxCost: { amount: class="cb-num">500, currency: class="cb-str">'usd', period: class="cb-str">'day' },
    maxAgents: class="cb-num">3,
  }
})

// One-shot: create agent, run task, get result, destroy
const result = await session.run(class="cb-str">'researcher', class="cb-str">'analyze competitor pricing')

console.log(result.output)     class="cb-cmt">// '...'
console.log(result.artifacts)  class="cb-cmt">// ['/data/report.pdf']
console.log(result.cost)       class="cb-cmt">// { 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

Was this page helpful?
Ask anything...⌘I