Skip to content

devupai-platform/.github

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

DEVUP AI — Algeria AI Inference Gateway logo

DEVUP AI

Algeria's #1 AI Infrastructure — Enterprise-Grade Inference Gateway

WebsiteDocumentationDashboardSupport

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors