Estimate total LLM response latency from time-to-first-token, output tokens per second, and network round-trip time. Compare Small/Fast, Medium, Large, and Frontier Reasoning model speed tiers side by side for the same response length.
Enter your details and click Calculate to see results
The time a user waits for an AI response is made up of three distinct pieces: time-to-first-token (TTFT), the generation time for the rest of the output, and network round-trip time between the client and server. Different models trade these off very differently — a small fast model might have a low TTFT and high tokens-per-second, while a frontier reasoning model can have a much higher TTFT (due to internal reasoning steps) and a slower generation rate. This calculator breaks down and totals all three components so you can estimate real end-to-end latency for a given model and response length.
Select a model speed tier — Small/Fast (~120 tok/s), Medium (~60 tok/s), Large (~25 tok/s), Frontier Reasoning (~15 tok/s), or enter a custom tokens-per-second figure — then set your expected time-to-first-token, the number of output tokens you expect the model to generate, and the network round-trip time between your client and the inference server. The calculator computes generation time as output tokens divided by tokens-per-second (converted to milliseconds), adds that to TTFT and network round-trip, and reports the total estimated latency in both milliseconds and seconds, along with effective throughput (total tokens divided by total time).
Latency directly shapes how an AI feature feels to use — a chatbot with sub-second TTFT and streaming output feels instantaneous even if the full response takes several seconds, while a non-streaming API call with 5+ seconds of total latency can feel sluggish regardless of output quality. Understanding which component (TTFT, generation, or network) dominates your total latency tells you where to invest engineering effort: a slow TTFT points to server-side queuing or prompt processing bottlenecks, a slow generation rate points to model choice or hardware, and a large network component points to deployment region or connection quality.
TTFT covers request queuing, prompt processing, and the model's initial computation before any output appears. It's the delay users perceive as "thinking time" and is critical for perceived responsiveness.
Once the first token arrives, remaining tokens stream out at the model's tokens-per-second rate. Larger, more capable models generally generate more slowly per token than smaller, faster models.
The physical time for a request and response to travel between client and server. Small for nearby, well-connected users; can dominate total latency for distant or poor-connection users on short responses.
Common questions about LLM inference latency
Explore other AI & infrastructure tools