Documentation

Build with SIMBA

Everything you need to ship voice agents in production — reference, SDKs, and model catalog.

Quickstart

Create an agent in under five minutes. Install the SDK, create an API key, and make your first call.

npm install @simba/voice-agents

import { SimbaClient } from "@simba/voice-agents";

const simba = new SimbaClient();
const agent = await simba.agents.create({
  name: "My first agent",
  conversationConfig: {
    agent: { prompt: { prompt: "You are a helpful assistant." } },
  },
});