Reducing latency
Reduce Claude's response latency by choosing a faster model like Claude Haiku 4.5, trimming prompt and output tokens, and streaming responses.
Latency refers to the time it takes for the model to process a prompt and generate an output. Latency can be influenced by various factors, such as the size of the model, the complexity of the prompt, and the underlying infrastructure supporting the model and point of interaction.
How to measure latency
When discussing latency, you might come across several terms and measurements:
- Baseline latency: This is the time taken by the model to process the prompt and generate the response, without considering the input and output tokens per second. It provides a general idea of the model's speed.
- Time to first token (TTFT): This metric measures the time it takes for the model to generate the first token of the response, from when the prompt was sent. It's particularly relevant when you're using streaming (more on that later) and want to provide a responsive experience to your users.
For a more in-depth understanding of these terms, check out the glossary.
How to reduce latency
1. Choose the right model
One of the most direct ways to reduce latency is to select the appropriate model for your use case. Anthropic offers a range of models with different capabilities and performance characteristics. Consider your specific requirements and choose the model that best fits your needs in terms of speed and output quality.
For speed-critical applications, Claude Haiku 4.5 offers the fastest response times while maintaining high intelligence:
client = anthropic.Anthropic()
# For time-sensitive applications, use Claude Haiku 4.5
message = client.messages.create(
model="claude-haiku-4-5",
max_tokens=100,
messages=[
{
"role": "user",
"content": "Summarize this customer feedback in 2 sentences: [feedback text]",
}
],
)
print(message.content[0].text)For more details about model metrics, see the models overview page.
2. Optimize prompt and output length
Minimize the number of tokens in both your input prompt and the expected output, while still maintaining high performance. The fewer tokens the model has to process and generate, the faster the response will be.
Here are some tips to help you optimize your prompts and outputs:
- Be clear but concise: Aim to convey your intent clearly and concisely in the prompt. Avoid unnecessary details or redundant information, while keeping in mind that Claude lacks context on your use case and might not make the intended leaps of logic if instructions are unclear.
- Ask for shorter responses: Ask Claude directly to be concise. If Claude is outputting unwanted length, ask Claude to curb its chattiness.
- Set appropriate output limits: Use the
max_tokensparameter to set a hard limit on the maximum length of the generated response. This prevents Claude from generating overly long outputs. - Experiment with temperature: The
temperatureparameter controls the randomness of the output. Lower values (for example, 0.2) can sometimes lead to more focused and shorter responses, while higher values (for example, 0.8) might result in more diverse but potentially longer outputs.
Finding the right balance among prompt clarity, output quality, and token count might require some experimentation.
3. Stream responses
Streaming is a feature that allows the model to start sending back its response before the full output is complete. This can significantly improve the perceived responsiveness of your application, as users can see the model's output in real time.
With streaming enabled, you can process the model's output as it arrives, updating your user interface or performing other tasks in parallel.
Visit Streaming messages to learn about how you can implement streaming for your use case.
Next steps
Minimize hallucinations in Claude's outputs by allowing uncertainty, grounding responses in direct quotes, and verifying claims with citations.
Stream Messages API responses incrementally with server-sent events, including text, tool use, and extended thinking deltas.
Was this page helpful?