Skip to main content

OmniCache

PyPI version License: MIT

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): Sub-0.05ms lookup for identical payloads.
    • L2 Semantic Match (Cosine Similarity): Matches semantically equivalent prompts using an in-memory 512-dimension vector projection.
  • 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.
  • Zero Configuration Persistence: Automatically writes cache snapshots to ~/.omnicache/omnicache.db (SQLite) so cache state survives restarts.
  • 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

CLI Reference

# Start server with clean terminal output
omnicache

# Start on custom port and host
omnicache --host 0.0.0.0 --port 9000

# Run with verbose HTTP access logs
omnicache --verbose

# Run system diagnostic checks
omnicache doctor

# Run local micro-benchmarks (1,000 queries)
omnicache benchmark

# View current token and cost savings
omnicache stats

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.
REQUIRE_AUTH false When true, enforces valid API key registration on all requests.
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 .
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

omnicache_proxy-2.2.1.tar.gz (62.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

omnicache_proxy-2.2.1-py3-none-any.whl (58.4 kB view details)

Uploaded Python 3

File details

Details for the file omnicache_proxy-2.2.1.tar.gz.

File metadata

  • Download URL: omnicache_proxy-2.2.1.tar.gz
  • Upload date:
  • Size: 62.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for omnicache_proxy-2.2.1.tar.gz
Algorithm Hash digest
SHA256 0a30911e1c4f193ec38cf4ceca84bf5a5b51bfa18e9667797727a0c583dae3d1
MD5 8368a0e1d8369eca43dd0dc35cb6e54c
BLAKE2b-256 5d8b344f3f8a824ac17751465a6a85b139c6e2f5c5c5f3a617eae38be8f02843

See more details on using hashes here.

File details

Details for the file omnicache_proxy-2.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for omnicache_proxy-2.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 246f91797b68e21febefcec6da9867ec70368e7ff7a589127840e2a08213422f
MD5 2afad5c102db8f72d74785420ad51edb
BLAKE2b-256 14b6c9bf44a4d69253d1488fd3073d8645cfe496496451984760ccb27c6366c7

See more details on using hashes here.

Release history Release notifications | RSS feed

2.9.0

2 files

2.8.0

2 files

2.7.2

2 files

2.7.1

2 files

2.7.0

2 files

2.6.8

2 files

2.6.7

2 files

2.6.6

2 files

2.6.5

2 files

2.6.4

2 files

2.6.3

2 files

2.6.2

2 files

2.6.1

2 files

2.6.0

2 files

2.5.9

2 files

2.5.8

2 files

2.5.7

2 files

2.5.6

2 files

2.5.5

2 files

2.5.4

2 files

2.5.3

2 files

2.5.2

2 files

2.5.1

2 files

2.5.0

2 files

2.3.0

2 files

This release

2.2.1 This release

2 files

2.2.0

2 files

2.1.4

2 files

2.1.3

2 files

2.1.2

2 files

2.1.1

2 files

2.1.0

2 files

2.0.5

2 files

2.0.4

2 files

2.0.3

2 files

2.0.2

2 files

2.0.1

2 files

2.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page