GPT-5 level intelligence just got 20× faster.
Same tasks, same scoring. Celeris matches or outperforms GPT-5 (reasoning off), GPT-5 mini, Gemini 2.5 Flash, and Nova Micro on accuracy — at a fraction of the latency.
Current autoregressive models generate one token at a time. Every token depends on the one before it, making latency fundamentally sequential. Celeris is a new inference architecture for language models, built on diffusion, that achieves latency and quality previous diffusion systems could not.
The result is an OpenAI-compatible API that delivers intelligent responses in milliseconds.
from celeris import Celeris client = Celeris(api_key="sk-…") # same call shape you already know stream = client.chat.completions.create( model="celeris-1", messages=[{"role": "user", "content": "Explain a Kalman filter"}], stream=True, ) # → 24 ms response time · 1,180 tok/s
Experience the new paradigm of inference.