Talk to your private cloud
Real-time voice with full access to your apps, data, and agents.
A private machine running a market-leading AI operating system. Apps, data, and agents on hardware you own; the OS orchestrates any model you point it at, end to end. No tenant. No usage tier. Deploy in three lines.
# Deploy any app to ForgeBox curl https://forgebox.local/api/apps \ -H "Authorization: Bearer $FORGEBOX_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "id": "my-app", "runtime": "php-8.4", "source": "git@github.com:me/my-app.git", "domain": "my-app.local" }' # → 201 Created · http://my-app.local · live in 1.4s
import { ForgeBox } from "@forgebox/sdk"; const fb = new ForgeBox({ host: "forgebox.local" }); const app = await fb.apps.deploy({ id: "my-app", runtime: "node-22", source: "git@github.com:me/my-app.git", }); console.log(app.url); // → http://my-app.local
from forgebox import ForgeBox fb = ForgeBox(host="forgebox.local") app = fb.apps.deploy( id="my-app", runtime="python-3.13", source="git@github.com:me/my-app.git", ) print(app.url) # → http://my-app.local
use ForgeBox\Client; $fb = new Client(['host' => 'forgebox.local']); $app = $fb->apps->deploy([ 'id' => 'my-app', 'runtime' => 'php-8.4', 'source' => 'git@github.com:me/my-app.git', ]); echo $app->url; // → http://my-app.local
Two short demos covering the voice assistant and the live meeting copilot.
Real-time voice with full access to your apps, data, and agents.
Real-time transcript polish and reply suggestions, as attendees speak.
A platform like water; it flows to fit your shape. Agents on the device watch how you actually work and continuously reshape the runtime, the schemas, and the surface area to match. You don't adapt to the tool. The tool adapts to you.
Apps, schemas, and tools reshape themselves to match how you actually work; observed continuously, refined nightly.
Long-running agent loops survive reboots, network drops, and updates; woken by events, idle when there's nothing to do.
Every data source speaks Model Context Protocol out of the box. Claude, Cursor, or your own agent; wired in by default, auth-gated locally.
A first-class data layer gives agents long-term recall; not session-bound chat, but continuity that compounds across years.
Your prompts, files, and outputs stay on the device. No third-party tenant, no telemetry, no model provider sees your data.
Plug in Claude, OpenAI, Gemini, or any API-accessible model. ForgeBox handles orchestration, retries, cost tracking, and fallbacks; the model choice stays yours.
Buy the box once, run as much as it will hold. No per-seat fees, no token caps, no surprise invoices.
ForgeBox · 4GB
For one person, a few apps, and an always-on agent or two. The starter shape.
ForgeBox · 8GB
The right shape for most teams. Comfortable headroom for live agents and a busy knowledge base.
ForgeBox · 16GB
Heaviest workloads. Busy agent fabric, large knowledge base, multi-user households or studios.
Single-page guides, copy-pasteable code, and an OpenAPI spec for the REST layer. No interstitials, no signup walls, no AI-generated filler.