OmniCache
OmniCache is a lightweight, local caching proxy for Anthropic (Claude), OpenAI (GPT), and Google (Gemini) APIs.
When developing with AI agents (like Claude Code, Cursor, Aider, or custom LLM scripts), repeated prompts, test runs, and static file queries frequently make duplicate upstream API calls. OmniCache sits between your client and upstream providers to intercept matching requests locally in <1ms, saving API costs and eliminating remote network latency.
Installation
pip install omnicache-proxy
Quickstart
1. Start the Proxy Server
omnicache
By default, the proxy runs on http://localhost:8000. You can change the port with --port:
omnicache --port 8080
2. Connect Your Client
Claude Code (Terminal CLI)
Set the Anthropic base URL environment variable before running claude:
export ANTHROPIC_BASE_URL="http://localhost:8000"
claude
Python (OpenAI SDK)
Route the base_url parameter to the local proxy:
from openai import OpenAI
client = OpenAI(
api_key="your-api-key",
base_url="http://localhost:8000/v1"
)
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "How do I reverse a linked list in Python?"}]
)
print(response.choices[0].message.content)
Cursor / VS Code / Other Tools
In your tool's model settings, set the API Base URL to http://localhost:8000/v1.
Key Features
- Two-Tier Cache Engine:
- L1 Exact Match (Trie Hash / Redis): Sub-0.05ms lookup for identical payloads.
- L2 Semantic Match (Multi-Table LSH & FAISS ANN Indexing): Matches semantically equivalent prompts using high-speed multi-table hyperplane locality-sensitive hashing or memory-compacted FAISS HNSW.
- Pluggable Embedders: Instant zero-dependency 512-d FastHashEmbedder or dense 384-d ONNX embeddings (
all-MiniLM-L6-v2).
- Deterministic Coding-Agent Tool Replay:
- Caches idempotent agent tool outputs (
read_file,git_diff,grep_search,list_dir) with cryptographic Git workspace state fingerprinting (commit_sha:dirty_status_hash). - File modifications or git status changes instantly invalidate stale tool results with zero false positives.
- Caches idempotent agent tool outputs (
- Client Explainability Headers:
- Transparent
X-OmniCache-Decision(HIT|MISS|BYPASS),X-OmniCache-Reason, andX-OmniCache-Similarityresponse headers across all OpenAI and Anthropic routes without mutating JSON body structures.
- Transparent
- Horizontal Scaling & Redis Clustering:
- Pluggable storage adapter architecture supporting both zero-dependency standalone mode and distributed multi-worker/multi-replica clusters.
- Secondary tenant index sets (
omnicache:tenant_l1:{org_id}) and True LRU eviction using Redis Sorted Sets (ZSET). - Atomic spend tracking (
INCRBYFLOAT) and sliding-window Redis RPM rate limiting across all worker processes. - Synchronized cluster-wide Circuit Breaker & upstream model failover state.
- Asynchronous Write-Behind Persistence:
- Micro-batched non-blocking worker queue writing to embedded SQLite WAL store off the critical path with zero latency impact.
- Durable Virtual Key and spend budget ledger surviving process cold starts.
- Remote Authenticated MCP JSON-RPC 2.0 Transport:
- Native
/mcpand/v1/mcpendpoint enabling AI IDEs (Cursor, Claude Code, VS Code) to perform intent-gated caching, vector search, and cache invalidation over HTTP.
- Native
- Agent Stream Replayer: Emulates natural token-streaming for cached responses so interactive CLIs (like Claude Code) stream smoothly without terminal glitches.
- Request Coalescing (SingleFlight): Deduplicates concurrent in-flight requests for the same prompt, making only one upstream call.
- Built-in CLI Utilities:
omnicache doctor: Checks database state, port bindings, and embedder health.omnicache benchmark: Measures P50, P95, and P99 cache lookup latencies on your machine.omnicache stats: Prints total tokens and cost savings directly to the console.
- Observability:
- Web Dashboard:
http://localhost:8000/dashboard - Prometheus Metrics:
http://localhost:8000/metrics - CSV Ledger Export:
http://localhost:8000/v1/cache/export
- Web Dashboard:
Horizontal Multi-Worker Deployment
To run OmniCache with multiple worker processes or in a clustered container environment, simply provide REDIS_URL:
# Multi-worker deployment with Redis distributed state
REDIS_URL="redis://127.0.0.1:6379/0" uvicorn server.gateway:app --host 127.0.0.1 --port 8000 --workers 4
Configuration
OmniCache can be configured via command-line flags or environment variables (in your shell or a local .env file):
| Environment Variable | Default | Description |
|---|---|---|
HOST |
127.0.0.1 |
Host interface to listen on (local-first by default). |
PORT |
8000 |
Port to bind the proxy server to. |
REDIS_URL |
"" |
Redis connection URL (e.g. redis://127.0.0.1:6379/0) for multi-worker state clustering. |
CACHE_STORAGE_BACKEND |
auto |
Storage engine backend: auto, redis, or memory. |
EMBEDDER_BACKEND |
fast_hash |
Semantic embedder: fast_hash, onnx, or auto. |
ANN_INDEX_ENABLED |
true |
Enables sub-millisecond Approximate Nearest Neighbor vector search. |
REQUIRE_AUTH |
false |
When true, enforces valid API key registration on all requests. Non-localhost bindings require auth. |
OMNICACHE_ALLOW_INSECURE_NETWORK_EXPOSURE |
false |
Explicit bypass if binding to 0.0.0.0 without REQUIRE_AUTH. |
ADMIN_API_KEY |
"" |
Master admin secret for managing /v1/enterprise/quotas and data exports. |
PRIVACY_SALT |
(auto-generated) |
256-bit cryptographic salt for anonymized PII tokenization. |
SEMANTIC_CACHE_TTL_SECONDS |
604800 |
Default time-to-live for cache entries (7 days). |
SEMANTIC_SIMILARITY_THRESHOLD |
0.92 |
Minimum cosine similarity required for an L2 semantic cache hit. |
OMNICACHE_DB_PATH |
~/.omnicache/omnicache.db |
Path to SQLite persistence database (WAL mode enabled). |
ANTHROPIC_API_KEY |
(Optional) | Default upstream Anthropic API key (if not passed in client headers). |
OPENAI_API_KEY |
(Optional) | Default upstream OpenAI API key (if not passed in client headers). |
GEMINI_API_KEY |
(Optional) | Default upstream Google Gemini API key. |
Running Tests
Run the test suite using pytest:
git clone https://github.com/13manmayarai-hash/omnicache-proxy.git
cd omnicache-proxy
pip install -e ".[test]"
pytest tests/ -v
Documentation
License
MIT License. See LICENSE for details.
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 omnicache_proxy-2.5.6.tar.gz.
File metadata
- Download URL: omnicache_proxy-2.5.6.tar.gz
- Upload date:
- Size: 96.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc9ecc0dbb929c8d57dffdc2e389ccb19f6b8617c52dbdacd920664386355a79
|
|
| MD5 |
a01082a37151efed282dd1fcf2f03f60
|
|
| BLAKE2b-256 |
036693d558dc724e3c816cd9304b176fd7866051f9f361131089bd744f4ed6c6
|
File details
Details for the file omnicache_proxy-2.5.6-py3-none-any.whl.
File metadata
- Download URL: omnicache_proxy-2.5.6-py3-none-any.whl
- Upload date:
- Size: 78.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f452d4b790d910866775d2237a73f563d998c1f143e6eb775d8075538c4d7682
|
|
| MD5 |
1e6e1bb3e51a339e182d64e15bdb2980
|
|
| BLAKE2b-256 |
99f4550476e41c120ca57e5802730cc0b1abc77f4dfb3bbac647d5c574a95cda
|