Glossary / Web & Infrastructure

Latency

The delay between asking a system for something and seeing the result come back.

Updated July 2, 2026

It’s not the work itself. It’s the waiting. You clicked, you asked, you sent the request, and now you’re waiting for the response to make the trip back. Latency doesn’t automatically mean the tool is bad. Sometimes the tool is fine and the distance is long, the server is busy, the model is large, or your request passes through several systems before it returns.

We use the Zootopia DMV scene for this. The request may be simple, but the line moves slowly because one part of the process is slow to respond. You’re standing there waiting, even though the task should be quick.

How it shows up

You feel latency when a page takes a while to load, an API call hangs, or an AI model pauses before answering. With AI it often shows up during inference, the run that turns your input into output: a stronger model may answer better but slower, a smaller one faster but with less nuance. It’s different from a rate limit, which is the system saying “you’re asking too often.” It’s also one reason people use a cache: a saved answer or page skips the whole trip, like the front desk keeping the form printed instead of walking to the back room every time.

Why you care

Latency changes how you design the job. If an agent waits ten seconds for every tiny step, a hundred-step process gets painful, so you batch work or use a faster model for simple steps. The real question isn’t only “can AI do it?” It’s “can AI do it fast enough that the workflow still makes sense?” Sometimes a slower, higher-quality run is fine because it replaces hours of human work. Sometimes latency kills the experience because the person needs an answer while a client waits.