From zero to production in 5 minutes

Official SDKs

Build real-time AI voice applications with our developer-friendly SDKs.
Production-ready • Type-safe • Battle-tested

Languages
2+
Setup Time
< 5 min
Test Coverage
100%
Bundle Size
< 50 KB

TypeScript / JavaScript

For Node.js, Browser, and Edge runtimes

npm version
Full TypeScript support with type definitions
ESM and CommonJS compatible
100% test coverage with Vitest
Install via npm
npm install @ai-gate/sdk

Python

For Python 3.8+ with async/await support

PyPI version
Sync and Async client implementations
Type hints with mypy support
Context manager support
Install via pip
pip install ai-gate

5-Minute Quickstart

Get your first AI voice session running in under 5 minutes

TypeScript / JavaScript

1Install the SDK
npm install @ai-gate/sdk
2Create your first session
import { AIGateClient } from '@ai-gate/sdk';

const client = new AIGateClient({
  projectId: 'your-project-id',
});

const session = await client.createSession({
  voice: 'echo',
  instructions: 'You are a helpful assistant',
});

console.log('Session created:', session.session_id);
3You're ready! 🎉

Check out the Playground to test your integration

Python

1Install the SDK
pip install ai-gate
2Create your first session
from ai_gate import AIGateClient

with AIGateClient(project_id='your-project-id') as client:
    session = client.create_session(
        voice='echo',
        instructions='You are a helpful assistant'
    )

    print(f'Session created: {session["session_id"]}')
3You're ready! 🎉

Check out the Playground to test your integration

Why Choose AI Gate SDKs?

Built for developers who demand the best

Type-Safe

Full TypeScript support with autocomplete and compile-time type checking

Lightning Fast

Optimized bundle size and runtime performance for production apps

Edge Ready

Works everywhere: Node.js, Browser, Edge Functions, Serverless

100% Tested

Comprehensive test coverage ensures reliability in production

Developer DX

Intuitive API design with helpful error messages and debugging

Zero Config

Works out of the box with sensible defaults and easy customization

Ready to Build?

Get started with AI Gate today and ship your AI voice app faster than ever