Skip to content

DEVUP AI

DEVUP AI

Algeria's #1 AI Infrastructure β€” Enterprise-Grade Inference Gateway

Website β€’ Documentation β€’ Dashboard β€’ Support

170+ Models DZD Billing Zero Cold Starts OpenAI Compatible


πŸš€ What is DEVUP AI?

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.


πŸ”Œ Features

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

⚑ Quickstart

Using cURL

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
  }'

Using the OpenAI Python SDK

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)

Using the OpenAI Node.js SDK

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);

πŸ“¦ Repositories

Repository Description
devupai-node Official Node.js & TypeScript SDK for DEVUP AI
devupai-examples Production-ready starter kits and integration examples

πŸ”— Links


Built with πŸ‡©πŸ‡Ώ in Algeria β€” Powering the next generation of AI applications.

DEVUP AI

Popular repositories Loading

  1. devupai-node devupai-node Public

    Official Node.js SDK for DEVUP AI β€” Algeria's AI inference gateway. OpenAI-compatible, 170+ models, DZD billing.

    TypeScript 1

  2. .github .github Public

  3. devupai-examples devupai-examples Public

    Production-ready starter kits and code examples for the DEVUP AI inference gateway β€” Next.js chatbot, Python AutoGen, streaming, and more.

    Python

Repositories

Showing 3 of 3 repositories

Top languages

Loading…

Most used topics

Loading…