One SDK. Every AI model.
Betwixt is an AI agent platform. Bring your own API keys from Claude, GPT, Gemini, or any provider — Niko orchestrates them behind one SDK with persistent memory and up to 96% fewer tokens.
You write one API call. Betwixt does the rest.
Niko, your AI orchestrator, coordinates Claude, GPT, Gemini, and Codex behind the scenes. Memory persists. Token costs drop. Your code stays simple.
// With Betwixt — one call, auto-routed, with memory
import { betwixt } from '@betwixt/sdk';
const result = await betwixt.chat({
model: 'auto', // auto-picks the best model
memory: true, // remembers past context
messages: [{ role: 'user', content: prompt }],
});OpenAI-compatible. Drop in and go.
Replace your OpenAI base URL with Betwixt. Get memory, smart routing, and multi-model access — same SDK, same types.
POST /v1/memory/storeStore and retrieve agent context with semantic searchcurl https://api.betwixt.dev/v1/memory/store \
-H "Authorization: Bearer bx_key" \
-d '{"content": "Auth uses RS256 JWT", "type": "decision"}'{
"id": "mem_a8f3c2",
"status": "stored",
"embedding_dims": 384,
"searchable": true
}Every call returns structured JSON. Every response is logged.
The full stack for AI-native apps.
Git Repos & CI/CD
Full git hosting with branches, PRs, CI pipelines, webhooks, and Hive publishing. Clone via HTTPS or SSH.
Model Hub
Upload, version, and deploy AI models. PyTorch, TensorFlow, ONNX, GGUF, Safetensors. Inference API and code snippets.
Datasets
Manage training data. CSV, JSONL, Parquet, Arrow with schema detection and tabular preview.
Agent Orchestration
Manage Niko, Claude, Gemini, Codex. Real-time activity feeds, status monitoring, task routing.
Infrastructure
Connect AWS, GCP, Azure, Hetzner. Manage VPS servers, domains, DNS, CDN, and SSL from one place.
Scheduled Agents
Automate agent runs on a schedule. Set triggers, define workflows, and let agents work autonomously.
Simple when you want it. Powerful when you need it.
Your apps and automations.
- ✓ Running applications
- ✓ Automation status
- ✓ Talk to Niko
- ✓ Browse the Hive
The full engineering workspace.
- ✓ Everything in Simple, plus:
- ✓ Git repos, PRs, CI/CD
- ✓ Model hub & datasets
- ✓ 5 managed APIs with scoped keys
- ✓ Infrastructure & cloud providers
- ✓ Scheduled & triggered automations
Install bx. Bring your keys. Ship.
Bring your own API keys from any provider — Claude, GPT, Gemini — and start building in under a minute.
Stop wasting tokens on context your agents already learned.
curl -fsSL https://get.betwixtai.com | sh