Developer Platform

Build intelligent applications, fast.

Integrate the world's most advanced AI models with just a few lines of code.

SDKs for every stack

We provide official, fully-typed libraries for Node.js, Python, Go, and Ruby. Build with the tools you already love.

  • npm install @ambrandom/ai
  • pip install ambrandom
import { Client } from '@ambrandom/ai';

const ambrandom = new Client({ apiKey: process.env.AMB_API_KEY });

async function generate() {
  const stream = await ambrandom.chat.completions.create({
    model: 'amb-enterprise-v2',
    messages: [{ role: 'user', content: 'Analyze this dataset' }],
    stream: true,
  });
  
  for await (const chunk of stream) {
    process.stdout.write(chunk.choices[0]?.delta?.content || '');
  }
}