Skip to main content

Low-latency, general purpose inference.

Celeris-1 is the first model from Celeris: a general purpose language model that delivers near-GPT-5 level intelligence with up to 15x faster response times.

Make your first call

Use the familiar OpenAI request shape. See the quickstart for SDK setup.

curl https://inference.celeris.ai/celeris-1/v1/chat/completions \
-H "Authorization: Bearer $CELERIS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "celeris-1",
"messages": [{"role": "user", "content": "Reply with one word: fast or slow?"}],
"max_tokens": 256, "temperature": 0, "seed": 7}'