Build real-time AI voice applications with our developer-friendly SDKs.
Production-ready • Type-safe • Battle-tested
For Node.js, Browser, and Edge runtimes
npm install @ai-gate/sdkFor Python 3.8+ with async/await support
pip install ai-gateGet your first AI voice session running in under 5 minutes
npm install @ai-gate/sdkimport { 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);Check out the Playground to test your integration
pip install ai-gatefrom 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"]}')Check out the Playground to test your integration
Built for developers who demand the best
Full TypeScript support with autocomplete and compile-time type checking
Optimized bundle size and runtime performance for production apps
Works everywhere: Node.js, Browser, Edge Functions, Serverless
Comprehensive test coverage ensures reliability in production
Intuitive API design with helpful error messages and debugging
Works out of the box with sensible defaults and easy customization
Get started with AI Gate today and ship your AI voice app faster than ever