Reversible proprietary-term pseudonymization for LiteLLM. Mask your codenames, products, customers, and schema on the way out — restore them faithfully on the way back.
lexvault is a LiteLLM proxy plugin that swaps an enterprise's own dictionary terms (codenames, unreleased products, customer names, internal identifiers — not classic PII) for deterministic placeholders on the request path and restores them on the response path. It works across:
- ✅ Non-streaming OpenAI
ModelResponse(/v1/chat/completions) - ✅ Non-streaming Anthropic-native content blocks +
tool_use.input(/v1/messages) - ✅ OpenAI
tool_calls[].function.arguments(request history + output) - ✅ Streaming OpenAI
ModelResponseStream - ✅ Streaming Anthropic-native raw SSE bytes (re-framed + restored)
- ✅
/v1/responsestext (Responses API)
with zero un-restored placeholders reaching the client and zero originals reaching the upstream LLM or logs.
Classic PII redaction is saturated. The wedge lexvault fills is reversible pseudonymization for an enterprise's proprietary knowledge, with correct round-trip handling across tool calls and streaming — exactly where the leading gateway's own path fails (BerriAI/litellm#22821).
The trust boundary is explicit: your dictionary and the mapping vault never leave your boundary by default. See the concepts docs for the design and threat model.
pip install lexvaultMount the shim next to your LiteLLM config.yaml (LiteLLM's guardrail loader
does a naive split('.') and loads <file>.py from the config dir, so you need
the one-line shim):
# config.yaml
model_list:
- model_name: gpt-4o
litellm_params:
model: openai/gpt-4o
api_key: os.environ/OPENAI_API_KEY
guardrails:
- guardrail_name: lexvault
litellm_params:
guardrail: lexvault_shim.LexVaultGuardrail # references the mounted shim
mode: [pre_call, post_call]
default_on: true
dictionary_path: dictionary.yaml
org_key: os.environ/LEXVAULT_ORG_KEY
scope: default# dictionary.yaml
terms:
- term: Project Titan
type: codename
- term: customer_database
type: schema
regex_terms:
- name: Employee ID
pattern: 'EMP-\d{4,6}'
type: idRun the proxy, and any request mentioning Project Titan reaches the upstream
LLM as something like [LEX-AB12CD34] — and the response is restored before it
reaches your client.
See examples/ for a complete Docker quickstart.
pip install lexvault # the engine + guardrail
# + lexvault_shim.py mounted next to config.yaml
Full docs (concepts, config reference, API reference, integration guide) live at nitishagar.github.io/lexvault.
- NER / embeddings / GLiNER / spaCy detection (v0.2)
- Standalone OpenAI-compatible ASGI proxy mode (v0.2)
- Redis vault backend / multi-instance coordination (v0.2)
- OTel/JSONL exhaust recorder,
scanCLI, TS SDK, UI, auth/mTLS (v0.2) - At-rest vault encryption (file-mode
0600protection + documented risk for v0.1) - Tool definition masking in
data["tools"](the model needs verbatim schemas) - Provider-prefixed passthrough routes (
/anthropic/...) bypass all guardrail hooks — documented as unprotected; use unified endpoints (/v1/*)
palena-litellm-pseudonymizer and similar one-off pseudonymizers exist, but
none package a focused, tool-call + streaming-correct, enterprise-dictionary
reversible round-trip as a drop-in LiteLLM plugin. LiteLLM's built-in
litellm_content_filter MASK is one-way (no restore), and its Presidio path
has the open round-trip bug above. See the docs for the full landscape.
Apache-2.0. Bundles/depends on pyahocorasick (BSD-3-Clause), litellm (MIT), and pydantic (MIT). See NOTICE.