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
LLMs & Chat
OpenAI-compatible API for top LLMs like DeepSeek and Llama. Swap your base URL, keep your code.
Image & Video Generation
FLUX, Stable Diffusion, text-to-video, and more.
Vision & OCR
Multimodal models for visual understanding and document text extraction.
Embeddings & Reranking
State-of-the-art embedding models for search and RAG architectures.
Why DEVUP AI
- Drop-in OpenAI replacement: Point your existing OpenAI SDK to
https://api.devupai.com/v1and 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 devupaitypescript
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.