Developer docs

Five minutes to first token

AgentBox ships in appliance mode with Ollama, an OpenAI-compatible API and a container runtime pre-wired. Point your existing code at the box and go.

Quickstart

# Talk to AgentBox over the OpenAI-compatible API
curl http://agentbox.local:11434/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "llama3.1:8b-instruct-q4_K_M",
    "messages": [{ "role": "user", "content": "Summarize this contract." }]
  }'
from openai import OpenAI

client = OpenAI(base_url="http://agentbox.local:11434/v1", api_key="local")

resp = client.chat.completions.create(
    model="llama3.1:8b-instruct-q4_K_M",
    messages=[{"role": "user", "content": "Draft a reply."}],
)
print(resp.choices[0].message.content)
import OpenAI from "openai";

const client = new OpenAI({ baseURL: "http://agentbox.local:11434/v1", apiKey: "local" });

const res = await client.chat.completions.create({
  model: "llama3.1:8b-instruct-q4_K_M",
  messages: [{ role: "user", content: "Hello, local model." }],
});
console.log(res.choices[0].message.content);
# SSH in, pull a model, run it — that's the whole setup
ssh admin@agentbox.local
ollama pull llama3.1:8b-instruct-q4_K_M
ollama run  llama3.1:8b-instruct-q4_K_M "Why local AI?"
Documentation hub

Everything to go from box to production

First-run setup

Network config, device registration, model install and update-channel selection through the appliance wizard.

Ollama & llama.cpp

Quantization choices, NPU offload paths and tuning the RK3588 for sustained throughput.

RAG stacks

Ready-to-deploy Docker Compose: vector DB + local 7B model + API gateway in one command.

Clustering

Join nodes to the mesh, balance a model across them, and expose one endpoint to your apps.

Security & air-gap

Read-only root, protected filesystem options and fully offline operation for sensitive sites.

OTA & fleet ops

A/B updates, device agent telemetry, health checks and log export for managed fleets.

Full docs ship with your unit

Reserve now to get early access to the developer portal, optimization guides and example stacks.

Reserve & get early docs →
Questions

Developer FAQ

About five minutes. The box ships in appliance mode with Ollama, an OpenAI-compatible API and a container runtime pre-wired.
Yes. Point any OpenAI-SDK client at the box's /v1 endpoint — cURL, Python, JavaScript and the Ollama CLI all work out of the box.
Yes. Any GGUF or Ollama-compatible model runs, and you can fine-tune an open base on your own data.

More questions? See the full FAQ or talk to us.