DevUp Docs
Back to Dashboard

Getting Started

What is DEVUP AI

DEVUP AI is an enterprise-grade AI inference gateway. We provide a single, OpenAI-compatible API to access the world's best open-source models without managing multiple provider accounts.

What you can do

Why DEVUP AI

  • Drop-in OpenAI replacement: Point your existing OpenAI SDK to https://api.devupai.com/v1 and your code works without changes. No migration required.
  • Cost-effective & Transparent: You only pay per token. We handle the complex routing and rate limiting behind the scenes.
  • Always-fresh model catalog: Access newly released open-source models immediately without updating your infrastructure.

Quick example

bash
npm install devupai
typescript
import { DevUpAI } from 'devupai';

// Initialize with your DZD API Key
const devup = new DevUpAI({
    apiKey: process.env.DEVUP_API_KEY, 
});

async function main() {
    const response = await devup.chat.completions.create({
        model: "deepseek-ai/DeepSeek-V3",
        messages: [{ role: "user", content: "Hello from Algeria!" }],
    });
    
    console.log(response.choices[0].message.content);
}

main();

Get your API key from the Dashboard.