| name | langchain-performance-tuning |
| description | Optimize LangChain application performance and latency.
Use when reducing response times, optimizing throughput,
or improving the efficiency of LangChain pipelines.
Trigger with phrases like "langchain performance", "langchain optimization",
"langchain latency", "langchain slow", "speed up langchain".
|
| allowed-tools | Read, Write, Edit |
| version | 1.0.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
LangChain Performance Tuning
Overview
Optimize LangChain applications for lower latency, higher throughput, and efficient resource utilization.
Prerequisites
- Working LangChain application
- Performance baseline measurements
- Profiling tools available
Instructions
Step 1: Measure Baseline Performance
import time
from functools import wraps
from typing import Callable
import statistics
def benchmark(func: Callable, iterations: int = 10):
"""Benchmark a function's performance."""
times = []
for _ in range(iterations):
start = time.perf_counter()
func()
elapsed = time.perf_counter() - start
times.append(elapsed)
return {
"mean": statistics.mean(times),
"median": statistics.median(times),
"stdev": statistics.stdev(times) if len(times) > 1 else 0,
"min": min(times),
"max": max(times),
}
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(model="gpt-4o-mini")
def test_call():
llm.invoke("Hello!")
results = benchmark(test_call, iterations=5)
print(f"Mean latency: {results['mean']:.3f}s")
Step 2: Enable Response Caching
from langchain_core.globals import set_llm_cache
from langchain_community.cache import InMemoryCache, SQLiteCache, RedisCache
set_llm_cache(InMemoryCache())
set_llm_cache(SQLiteCache(database_path=".langchain_cache.db"))
import redis
redis_client = redis.Redis.from_url("redis://localhost:6379")
set_llm_cache(RedisCache(redis_client))
Step 3: Optimize Batch Processing
import asyncio
from langchain_openai import ChatOpenAI
from langchain_core.prompts import ChatPromptTemplate
llm = ChatOpenAI(model="gpt-4o-mini")
prompt = ChatPromptTemplate.from_template("{input}")
chain = prompt | llm
def process_sequential(inputs: list) -> list:
return [chain.invoke({"input": inp}) for inp in inputs]
def process_batch(inputs: list) -> list:
batch_inputs = [{"input": inp} for inp in inputs]
return chain.batch(batch_inputs, config={"max_concurrency": 10})
async def process_async(inputs: list) -> list:
batch_inputs = [{"input": inp} for inp in inputs]
return await chain.abatch(batch_inputs, config={"max_concurrency": 20})
Step 4: Use Streaming for Perceived Performance
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(model="gpt-4o-mini")
response = llm.invoke("Tell me a story")
llm_stream = ChatOpenAI(model="gpt-4o-mini", streaming=True)
for chunk in llm_stream.stream("Tell me a story"):
print(chunk.content, end="", flush=True)
Step 5: Optimize Prompt Length
import tiktoken
def count_tokens(text: str, model: str = "gpt-4o-mini") -> int:
"""Count tokens in text."""
encoding = tiktoken.encoding_for_model(model)
return len(encoding.encode(text))
def optimize_prompt(prompt: str, max_tokens: int = 1000) -> str:
"""Truncate prompt to fit token limit."""
encoding = tiktoken.encoding_for_model("gpt-4o-mini")
tokens = encoding.encode(prompt)
if len(tokens) <= max_tokens:
return prompt
return encoding.decode(tokens[:max_tokens])
system_prompt = "You are a helpful assistant."
user_context = "Here is the document: " + long_document
Step 6: Connection Pooling
import httpx
from langchain_openai import ChatOpenAI
transport = httpx.HTTPTransport(
retries=3,
limits=httpx.Limits(
max_connections=100,
max_keepalive_connections=20
)
)
http_client = httpx.Client(transport=transport, timeout=30.0)
llm = ChatOpenAI(
model="gpt-4o-mini",
http_client=http_client
)
Step 7: Model Selection Optimization
llm_fast = ChatOpenAI(model="gpt-4o-mini", temperature=0)
llm_powerful = ChatOpenAI(model="gpt-4o", temperature=0)
from langchain_core.runnables import RunnableBranch
def classify_complexity(input_dict: dict) -> str:
"""Classify input complexity."""
text = input_dict.get("input", "")
return "complex" if len(text) > 500 else "simple"
router = RunnableBranch(
(lambda x: classify_complexity(x) == "simple", prompt | llm_fast),
prompt | llm_powerful
)
Performance Metrics
| Optimization | Latency Improvement | Cost Impact |
|---|
| Caching | 90-99% on cache hit | Major reduction |
| Batching | 50-80% for bulk | Neutral |
| Streaming | Perceived 80%+ | Neutral |
| Shorter prompts | 10-30% | Cost reduction |
| Connection pooling | 5-10% | Neutral |
| Model routing | 20-50% | Cost reduction |
Output
- Performance benchmarking setup
- Caching implementation
- Optimized batch processing
- Streaming for perceived performance
Resources
Next Steps
Use langchain-cost-tuning to optimize API costs alongside performance.