Skip to content
inference.academy

glossary/serving/slo

Service level objective

also SLO, latency target

A latency promise stated as a percentile: the first token within 500 ms for 99% of requests, or each following token within 50 ms. Serving decisions are trade-offs against these numbers, and a stack with no stated objective cannot be tuned, only made faster or slower. The objective decides the batch size, which decides throughput, which decides the bill. Chat and agent workloads want different ones.


p99 TTFT

The objective most often missed, because prefill of one long prompt delays the first token of everyone queued behind it.


See it happen


Related