Skip to content

DOS/DOS.AI-Docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DOS AI

Fast, affordable AI inference for open-source models.

DOS AI is an inference platform that lets you run leading open-source language models through a simple, OpenAI-compatible API. No GPU management, no infrastructure headaches -- just an API key and a few lines of code.

Why DOS AI?

  • OpenAI-compatible -- Swap your base URL and you're done. Works with the OpenAI Python SDK, Node.js SDK, LangChain, LlamaIndex, and any HTTP client.
  • Low latency -- Models served on dedicated GPUs with optimized inference (vLLM). No cold starts, no queues.
  • Pay-as-you-go -- Only pay for the tokens you use. Every new account gets $5 in free credits to get started.
  • Open-source models -- Access the best open-source models without managing your own infrastructure.

Quick start

Get up and running in under a minute:

from openai import OpenAI

client = OpenAI(
    base_url="https://api.dos.ai/v1",
    api_key="dos_sk_...",  # Get your key at app.dos.ai
)

response = client.chat.completions.create(
    model="dos-ai",
    messages=[
        {"role": "user", "content": "Explain quantum computing in one paragraph."}
    ],
)

print(response.choices[0].message.content)

Documentation

Section Description
Quickstart Create an account, get an API key, and make your first request
Authentication API key management, rate limits, and security best practices
OpenAI Compatibility Migration guide and compatibility details

Available models

Model ID Base model Context length Pricing
dos-ai Qwen3.5-35B-A3B 32,768 tokens See dashboard

More models are added regularly. Check the models endpoint or your dashboard for the latest list.

Links

About

Document site for DOS.AI

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors