Serverless
Pay for what you use and start sending requests immediately.
The token factory for open models
One OpenAI-compatible API, backed by an orchestration layer built to keep open-weight models fast, available, and affordable to run at volume.
The orchestration layer between open-weight models and the traffic that runs on them.
Serving efficiency is the product.
Ready to serve the moment a strong release lands.
Resilience without the integration burden.
Platform
From a first request to reserved capacity, the platform scales with how you build.
Pay for what you use and start sending requests immediately.
Provisioned capacity for production workloads.
Guaranteed capacity and custom commitments.
Model catalog
Chat, code, vision, and embedding models across the fastest-moving open-weight families.
New open-weight releases go live the moment they're ready to serve.
Long-context chat models for document-heavy workloads.
Bilingual chat and reasoning models.
General-purpose chat and instruction-following models.
Reasoning-forward models tuned for complex problem solving.
Multilingual chat and code models.
Efficient, general-purpose models built for high-throughput serving.
Solutions
Domain tuning, vertical-specific models, and the infrastructure agents run on.
Models post-trained on your domain and data.
Model variants adapted for concrete verticals.
Frameworks, evaluations, and workflow orchestration for agents.
AI Gateway
Generally availableOne governed surface for every model call.
Budgets, limits, and attribution on every model, harness, or agent.
Guardrails, audit trails, and access-control lists across all AI traffic.
Closed and open models, behind the same governed surface.
Infrastructure
A multi-provider, multi-region compute fabric, presented as a single, simple API.
Capacity is drawn from many providers and regions and presented as one surface.
Fast time to first token and steady generation are first-class commitments.
Workloads are matched to the hardware they run best on.
Developers
Point your existing client at the platform and start serving open models.
curl https://api.example.com/v1/chat/completions \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "your-model-id",
"messages": [{"role": "user", "content": "Hello"}],
"stream": true
}'
from openai import OpenAI
client = OpenAI(
base_url="https://api.example.com/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="your-model-id",
messages=[{"role": "user", "content": "Hello"}],
stream=True,
)
for chunk in response:
print(chunk.choices[0].delta.content or "", end="")
Bring your traffic. We handle the fabric underneath.