Change the endpoint.
Keep your chat integration. Use a single API key across the published model catalog.
MODEL ACCESS, WITH DIRECTION
Your task. The right model. Call models directly or let Jev help choose — with clear prices, project budgets, and a record of every route.
OpenAI-compatible chat API · Text, streaming, and verified tools
Your allowed models.
Your budget. A visible decision.
Keep your chat integration. Use a single API key across the published model catalog.
Choose allowed models and monthly budgets. Keep each project’s credits and keys separate.
Inspect the selected model, routing reason, token usage, and final charge for each request.
FAMILIAR BY DESIGN
Start with a fixed model. Enable Jev routing after selecting an evaluated policy in your project.
Read the quickstart →import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.jevrouter.io/v1",
api_key=os.environ["JEVROUTER_API_KEY"],
)
response = client.chat.completions.create(
model="jev/auto",
messages=[{"role": "user", "content": "Hello"}],
max_tokens=256,
)