Semantic caching library for LLM and RAG systems
Project description
LLMGatekeeper
A semantic caching library for LLM and RAG systems. Eliminates redundant LLM API calls and vector database queries by recognising semantically equivalent queries using embedding-based similarity matching.
Instead of requiring exact string matches, LLMGatekeeper understands that "What is Python?" and "Tell me about Python" are asking the same thing — and returns the cached response instantly.
Features
- Semantic matching — Embedding-based similarity search catches paraphrases, synonyms, and rewording automatically
- Redis backends — Simple hash-based mode for small datasets (<10k entries); auto-upgrades to RediSearch KNN vector search when available
- Pluggable embeddings — Ships with
all-MiniLM-L6-v2(Sentence-Transformers) out of the box; swap in OpenAI embeddings or any custom provider - Confidence levels — Scores are classified into HIGH / MEDIUM / LOW / NONE bands with per-model tuned thresholds
- Multi-tenant isolation — Namespace prefixing keeps separate tenants' caches partitioned in the same Redis instance
- Async support — Full
AsyncSemanticCacheAPI mirrors the synchronous interface - Analytics & observability — Hit/miss rates, latency percentiles (p50/p95/p99), near-miss tracking, and top-query frequency
- TTL control — Global default TTL with per-entry overrides;
ttl=0disables expiry for specific entries - Bulk warming — Load many entries at once with
warm(), including batch-size control and progress callbacks
Installation
pip install llmgatekeeper
With OpenAI embedding support:
pip install llmgatekeeper[openai]
For development (tests, linting, type-checking):
pip install llmgatekeeper[dev]
Requirements
- Python 3.9+
- Redis 6.2+ (Redis Stack recommended for RediSearch vector search)
Quick Start
import redis
from llmgatekeeper import SemanticCache
# Connect to your Redis instance
client = redis.Redis(host="localhost", port=6379)
# Create a semantic cache (auto-detects RediSearch if available)
cache = SemanticCache(client)
# Store a response
cache.set("What is Python?", "Python is a high-level programming language.")
# Retrieve with a semantically similar query — no exact match needed
result = cache.get("Tell me about Python")
print(result) # "Python is a high-level programming language."
With metadata
cache.set(
"What is Python?",
"Python is a high-level programming language.",
metadata={"source": "docs", "version": "3.12"},
)
result = cache.get("Explain Python")
if result:
print(result.response) # the cached response
print(result.similarity) # e.g. 0.91
print(result.metadata) # {"source": "docs", "version": "3.12"}
Async usage
import asyncio
import redis.asyncio as aioredis
from llmgatekeeper import AsyncSemanticCache
from llmgatekeeper.backends.redis_async import AsyncRedisBackend
async def main():
client = aioredis.Redis(host="localhost", port=6379)
backend = AsyncRedisBackend(client)
cache = AsyncSemanticCache(backend)
await cache.set("What is Python?", "A high-level programming language.")
result = await cache.get("Tell me about Python")
print(result)
asyncio.run(main())
Multi-tenant isolation
tenant_a = SemanticCache(client, namespace="tenant_a")
tenant_b = SemanticCache(client, namespace="tenant_b")
tenant_a.set("Hello", "Hi from A")
tenant_b.set("Hello", "Hi from B")
print(tenant_a.get("Hello").response) # "Hi from A"
print(tenant_b.get("Hello").response) # "Hi from B"
TTL (time-to-live)
# Global default: all entries expire after 1 hour
cache = SemanticCache(client, default_ttl=3600)
# Per-entry override: this entry lives forever
cache.set("Permanent fact", "Water is H2O", ttl=0)
# Short-lived entry: expires in 60 seconds
cache.set("Breaking news", "...", ttl=60)
Analytics
stats = cache.stats()
print(f"Hit rate: {stats.hit_rate:.1%}")
print(f"P95 latency: {stats.p95_latency_ms:.2f} ms")
print(f"Near misses: {len(stats.near_misses)}")
print(f"Top queries: {[(q.query, q.count) for q in stats.top_queries[:3]]}")
Full examples
The snippets above cover the basics. For a complete walkthrough of every feature — backends, embedding providers, similarity metrics, confidence classification, retrieval, async, analytics, logging, error handling, and custom backend patterns — see examples/quickstart_redis.py.
Architecture
The library is organised into three layers:
┌─────────────────────────────────────────────┐
│ SemanticCache API │
│ (get / set / delete / warm / stats …) │
├────────────────┬────────────────────────────┤
│ Embedding │ Similarity Engine │
│ Engine │ (cosine / dot / euclidean) │
│ (pluggable │ (confidence classification)│
│ providers) │ (multi-result retrieval) │
├────────────────┴────────────────────────────┤
│ Storage Backend Adapter │
│ RedisSimpleBackend │ RediSearchBackend │
│ (brute-force) │ (KNN vector search) │
└─────────────────────────────────────────────┘
See ARCHITECTURE.md for a detailed breakdown of every layer, class hierarchy, and extension point.
Configuration Reference
| Parameter | Default | Description |
|---|---|---|
threshold |
0.85 |
Minimum cosine similarity for a cache hit |
default_ttl |
None |
Seconds until entries expire (None = no expiry) |
namespace |
None |
Key prefix for multi-tenant isolation |
similarity_metric |
"cosine" |
Similarity function (cosine, dot, euclidean) |
embedding_provider |
SentenceTransformerProvider |
Provider used to generate query embeddings |
Running Tests
pip install llmgatekeeper[dev]
pytest
The test suite contains 468 tests covering all backends, embedding providers, similarity metrics, async paths, error handling, analytics, and edge cases.
Contributing
Contributions are welcome. Please open an issue or pull request on GitHub.
License
This project is licensed under the MIT License — see the LICENSE file for details.
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 llmgatekeeper-0.1.0.tar.gz.
File metadata
- Download URL: llmgatekeeper-0.1.0.tar.gz
- Upload date:
- Size: 68.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb7ecd623da66486d8eec2000c6d579fd56e3870c3b0dc6796f7d23f8b60e24d
|
|
| MD5 |
96ce79bf410aeed349c5a1acd4e7e754
|
|
| BLAKE2b-256 |
e5169a848de1141082a2b2ecd8d8cebad8dee382751379bf56639b62aa767d9a
|
File details
Details for the file llmgatekeeper-0.1.0-py3-none-any.whl.
File metadata
- Download URL: llmgatekeeper-0.1.0-py3-none-any.whl
- Upload date:
- Size: 43.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9e95283101eded4437e929aaa1d5779fd6763ff8b0915fc915a22a2ccc5a40a
|
|
| MD5 |
688e5590e5f8ce60c0ce7cc9c1fc4b14
|
|
| BLAKE2b-256 |
a36583e18495811c0b8572da779bd1efd9260d4a7adf1370dc6c64aa671122ce
|