Measure and monitor context drift in LLM conversations across sessions
Project description
context-decay-drift
Measure and monitor how LLM conversations drift from their system prompt over time.
The Problem
LLM-powered chatbots lose focus over long conversations. After several turns, the model "forgets" its system prompt, leading to:
- Off-topic responses that ignore the bot's intended persona
- Reduced accuracy as the conversation context window fills up
- Poor user experience with no visibility into when the bot becomes unreliable
context-decay-drift solves this by giving you a real-time drift score (0-100) that tracks how far a conversation has drifted from its original system prompt. Wrap it around any LLM client and get actionable signals for when to reset, warn, or intervene.
How It Works
Session 1 (Turn 1-2): Score 95 [FRESH] - Bot is on-topic
Session 2 (Turn 3-6): Score 78 [MILD] - Slight drift detected
Session 3 (Turn 7-12): Score 58 [MODERATE] - Noticeable drift
Session 4 (Turn 13+): Score 34 [SEVERE] - Bot is off-rails, reset recommended
The library combines multiple strategies (keyword tracking, token overlap analysis) with exponential decay to produce a single drift score. No external API calls needed for scoring - it runs entirely locally.
Installation
# Core package (no dependencies)
pip install context-decay-drift
# With OpenAI wrapper
pip install context-decay-drift[openai]
# With Anthropic wrapper
pip install context-decay-drift[anthropic]
# Everything
pip install context-decay-drift[all]
Quick Start
Generic Tracker (Any LLM)
Works with any LLM pipeline. Just feed in the turns manually:
from context_decay_drift.providers.generic import GenericDriftTracker
tracker = GenericDriftTracker(
system_prompt="You are a Python tutor. Always provide code examples.",
decay_rate=0.95, # How fast context decays (0-1, lower = faster)
window_size=5, # Recent turns to evaluate
)
# After each LLM call in your pipeline:
drift = tracker.record_turn(
user_message="How do I use list comprehensions?",
assistant_response="List comprehensions provide a concise way to create lists..."
)
print(f"Drift Score: {drift.score:.1f}/100") # e.g., 82.3/100
print(f"Verdict: {drift.verdict.value}") # e.g., "mild"
print(f"Still Effective: {drift.is_effective}") # True/False
print(f"Needs Reset: {drift.needs_reset}") # True/False
OpenAI Integration
Wraps the OpenAI Python SDK. Drift is computed automatically after each response:
from openai import OpenAI
from context_decay_drift.providers.openai_provider import OpenAIDriftWrapper
client = OpenAI() # Uses OPENAI_API_KEY env var
wrapper = OpenAIDriftWrapper(
client=client,
model="gpt-4o",
system_prompt="You are a Python tutor. Always provide code examples.",
)
result = wrapper.chat("How do I define a function?")
print(result.content) # The LLM response text
print(f"Drift: {result.drift_score:.1f}/100") # 85.2/100
print(f"Verdict: {result.drift_verdict}") # "mild"
print(result.response) # Original OpenAI response object
Anthropic Integration
Same pattern for Anthropic's Claude:
from anthropic import Anthropic
from context_decay_drift.providers.anthropic_provider import AnthropicDriftWrapper
client = Anthropic() # Uses ANTHROPIC_API_KEY env var
wrapper = AnthropicDriftWrapper(
client=client,
model="claude-sonnet-4-20250514",
system_prompt="You are a Python tutor. Always provide code examples.",
max_tokens=1024,
)
result = wrapper.chat("Explain decorators in Python")
print(result.content)
print(f"Drift: {result.drift_score:.1f}/100")
# Auto-reset when drift is critical
if result.drift.needs_reset:
wrapper.reset_session()
Drift Score Reference
| Score Range | Verdict | Meaning |
|---|---|---|
| 90 - 100 | FRESH |
Context well-preserved, bot is on-topic |
| 75 - 89 | MILD |
Minor drift, still effective |
| 55 - 74 | MODERATE |
Noticeable drift, monitor closely |
| 35 - 54 | SEVERE |
Significant drift, consider resetting context |
| 0 - 34 | CRITICAL |
Context largely lost, reset recommended |
Configuration
Decay Rate
Controls how fast the score decays per conversation turn. Range: (0, 1].
# Slow decay - forgiving, good for long conversations
DriftAnalyzer(decay_rate=0.98)
# Default - balanced
DriftAnalyzer(decay_rate=0.95)
# Fast decay - strict, flags drift early
DriftAnalyzer(decay_rate=0.90)
Window Size
How many recent assistant turns to evaluate. 0 means evaluate all turns.
# Only look at last 3 responses (responsive to recent changes)
DriftAnalyzer(window_size=3)
# Look at last 10 responses (smoother, less noisy)
DriftAnalyzer(window_size=10)
# Evaluate entire conversation history
DriftAnalyzer(window_size=0)
Custom Strategies
Mix and weight different drift detection strategies:
from context_decay_drift import DriftAnalyzer
from context_decay_drift.strategies.keyword import KeywordStrategy
from context_decay_drift.strategies.token_overlap import TokenOverlapStrategy
from context_decay_drift.strategies.composite import CompositeStrategy
# Custom composite with 70/30 weighting
strategy = CompositeStrategy(
strategies=[
KeywordStrategy(top_n=50), # Track top 50 system prompt keywords
TokenOverlapStrategy(), # Cosine similarity of term frequencies
],
weights=[0.7, 0.3], # Keyword matching weighted higher
)
analyzer = DriftAnalyzer(strategies=[strategy])
Advanced Usage
Direct Analyzer API
Use the analyzer directly without a provider wrapper:
from context_decay_drift import DriftAnalyzer, Session
session = Session(system_prompt="You are a helpful coding assistant.")
analyzer = DriftAnalyzer(decay_rate=0.93)
# Record turns
session.add_user_message("How do I sort a list?")
session.add_assistant_message("Use the sorted() function or list.sort() method...")
# Get drift score
result = analyzer.analyze(session)
print(result.to_dict())
# {
# "score": 78.5,
# "verdict": "mild",
# "is_effective": True,
# "needs_reset": False,
# "turn_number": 2,
# "session_id": "a1b2c3d4e5f6",
# "strategy_scores": {"keyword": 72.0, "token_overlap": 85.0, "composite": 78.5},
# "metadata": {"raw_score": 80.1, "decay_factor": 0.98, ...}
# }
Session Management
from context_decay_drift import Session
session = Session(
system_prompt="You are a Python tutor.",
session_id="user-123-session-1", # Custom ID for tracking
)
session.add_user_message("Hello")
session.add_assistant_message("Hi! Let's learn Python.")
print(session.turn_count) # 2
print(session.assistant_turns) # [Turn(role='assistant', ...)]
print(session.get_recent_context(n=3)) # Last 3 turns
session.reset() # Clear turns, keep system prompt
Building Custom Strategies
Extend BaseStrategy to implement your own drift detection logic:
from context_decay_drift.strategies.base import BaseStrategy
class SentimentStrategy(BaseStrategy):
"""Detect drift via sentiment shift from system prompt tone."""
@property
def name(self) -> str:
return "sentiment"
def score(self, system_prompt: str, assistant_responses: list[str]) -> tuple[float, dict[str, float]]:
# Your custom logic here
score = compute_sentiment_alignment(system_prompt, assistant_responses)
return score, {self.name: score}
Project Structure
context_decay_drift/
src/context_decay_drift/
core/
analyzer.py # Central drift analysis engine
scorer.py # DriftScore and DriftVerdict data structures
session.py # Session and Turn management
strategies/
base.py # BaseStrategy abstract class
keyword.py # Keyword hit-rate strategy
token_overlap.py # Cosine similarity strategy
composite.py # Weighted multi-strategy combiner
providers/
base.py # BaseProvider and DriftAwareResponse
openai_provider.py # OpenAI SDK wrapper
anthropic_provider.py # Anthropic SDK wrapper
generic.py # Provider-agnostic tracker
utils/
text.py # Tokenization, TF, cosine similarity
tests/ # 75 tests covering all modules
examples/ # Ready-to-run examples for each provider
Running Tests
git clone https://github.com/Suman-Git-DS/ContextDecayDrift.git
cd ContextDecayDrift
pip install -e ".[dev]"
pytest tests/ -v
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/my-feature) - Write tests for new functionality
- Ensure all tests pass (
pytest tests/ -v) - Submit a pull request
License
MIT License - see LICENSE for details.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file context_decay_drift-0.1.0.tar.gz.
File metadata
- Download URL: context_decay_drift-0.1.0.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61ae67cf9585f42086169ceac9cf72b2c38a09d31f8e4677e7e9aaeb81232ee1
|
|
| MD5 |
d00118f4e8cda282ecf8b63973af33bf
|
|
| BLAKE2b-256 |
e83330de42a5df3b676f972278f1e07abc480b688662cef408b9844f94bfab3a
|
File details
Details for the file context_decay_drift-0.1.0-py3-none-any.whl.
File metadata
- Download URL: context_decay_drift-0.1.0-py3-none-any.whl
- Upload date:
- Size: 21.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af3a601eb7e318eae2030cd27083c53e95616415b7be06889a235a4e4104623f
|
|
| MD5 |
52d4f4fcb5fb0813b95f0f78dcadf987
|
|
| BLAKE2b-256 |
32efcd0713c0a80be8db3577accb371747c5bc3aad5ebbb56e708816a7b8be37
|