Neviri AI routes one OpenAI-compatible endpoint to frontier and open models — resold and self-hosted. Sign in with your Neviri account, add credits, and ship.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.neviri.ai/v1",
apiKey: process.env.NEVIRI_AI_KEY, // nvai_...
});
const res = await client.chat.completions.create({
model: "neviri/flagship-chat",
messages: [{ role: "user", content: "Hello, Neviri." }],
stream: true,
});An OpenAI-compatible /v1 API. Swap models by changing one string — no rewrite.
Frontier models from upstream providers and open models on Neviri GPUs, routed per model.
Pay for the tokens you use. Per-key spend caps and live metering keep spend in view.
Sign in with the account you already have. One session across Neviri Cloud and Neviri AI.
One key reaches all of them.sample catalogue
Use your existing Neviri account — no new signup. Your session carries over from the console.
Top up your Neviri AI wallet — a signup credit gets your first requests moving.
Create a key, point any OpenAI SDK at Neviri AI, and start streaming completions.
Sign in with Neviri, grab a key, and call any model from one API.