Algeria's #1 AI Infrastructure β Enterprise-Grade Inference Gateway
Website β’ Documentation β’ Dashboard β’ Support
DEVUP AI is a fully managed AI inference gateway built for developers, startups, and enterprises across Algeria and the MENA region. We provide drop-in OpenAI-compatible APIs backed by a fleet of 170+ state-of-the-art models β all billed natively in Algerian Dinar (DZD).
Point your existing OpenAI SDK at api.devupai.com and you're live. No code changes. No vendor lock-in.
| Feature | Description |
|---|---|
| 170+ Models | DeepSeek V3, Llama 3.1 405B, Qwen 3, Gemma 2, Mistral, and more |
| OpenAI-Compatible | Works with any OpenAI SDK β Python, Node.js, Go, Rust, cURL |
| Anthropic-Compatible | Native Claude SDK support via our translation gateway |
| DZD Billing | Pay in Algerian Dinar. No international card required |
| Zero Cold Starts | Models are always warm. Sub-second time-to-first-token |
| Scoped API Keys | Fine-grained access control with model whitelisting and per-key budgets |
| Real-Time Telemetry | Usage dashboards, per-request cost tracking, and spending alerts |
| Enterprise Security | SOC 2 aligned practices. No data logging. Full request isolation |
curl https://api.devupai.com/v1/chat/completions \
-H "Authorization: Bearer dvup_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-ai/DeepSeek-V3-0324",
"messages": [{"role": "user", "content": "Hello from Algeria!"}],
"max_tokens": 256
}'from openai import OpenAI
client = OpenAI(
api_key="dvup_your_key_here",
base_url="https://api.devupai.com/v1"
)
response = client.chat.completions.create(
model="deepseek-ai/DeepSeek-V3-0324",
messages=[{"role": "user", "content": "Explain quantum computing in one paragraph."}]
)
print(response.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
apiKey: "dvup_your_key_here",
baseURL: "https://api.devupai.com/v1",
});
const completion = await client.chat.completions.create({
model: "deepseek-ai/DeepSeek-V3-0324",
messages: [{ role: "user", content: "Write a haiku about Algiers." }],
});
console.log(completion.choices[0].message.content);| Repository | Description |
|---|---|
devupai-node |
Official Node.js & TypeScript SDK for DEVUP AI |
devupai-examples |
Production-ready starter kits and integration examples |
- π Website: devupai.com
- π Documentation: devupai.com/docs
- π Dashboard: devupai.com/dashboard
- π§ Support: support@devupai.com
Built with π©πΏ in Algeria β Powering the next generation of AI applications.

