Shields your confidential data from third party LLM providers.
Project description
🛡️ LLMShield
Production-ready, zero-dependency Python library for protecting PII in LLM interactions
Designed for seamless integration into existing API-dense codebases with minimal configuration overhead
Overview
LLMShield delivers enterprise-grade protection for sensitive information in LLM interactions by automatically detecting and replacing PII with secure placeholders before transmission, then restoring original values in responses. The library employs a sophisticated multi-layered detection approach combining advanced pattern recognition, comprehensive dictionary matching, and intelligent contextual analysis.
Key Features
| Core Capabilities | Advanced Features |
|---|---|
| Zero Dependencies Pure Python implementation with no external requirements |
Conversation Memory Multi-turn conversation support with perfect entity consistency |
| Intelligent Entity Detection Automatic PII identification using multi-layered analysis |
Streaming Support Real-time processing for streaming LLM responses |
| Selective Protection Granular control over which entity types to protect |
Performance Optimized High-performance architecture with intelligent caching |
| Universal Compatibility Works with most LLM providers out of the box |
Production Ready Enterprise-grade reliability and security |
High-Level Data Flow
graph LR
A["Raw Input<br/>'Contact Dr. Smith at smith@hospital.org'"] --> B["Entity Detection<br/>PERSON: Dr. Smith<br/>EMAIL: smith@hospital.org"]
B --> C["PII Anonymization<br/>'Contact <PERSON_0> at <EMAIL_1>'"]
C --> D["LLM Processing<br/>Safe text sent to<br/>OpenAI, Claude, etc."]
D --> E["Response Restoration<br/>Placeholders → Original PII"]
E --> F["Protected Output<br/>'I'll help you contact Dr. Smith<br/>at smith@hospital.org'"]
%% Styling
classDef flowStyle fill:#f8f9fa,stroke:#495057,stroke-width:2px,color:#212529
classDef detectionStyle fill:#e8f4f8,stroke:#0c63e4,stroke-width:2px,color:#212529
classDef anonymizationStyle fill:#fff3cd,stroke:#856404,stroke-width:2px,color:#212529
classDef llmStyle fill:#f0e6ff,stroke:#6f42c1,stroke-width:2px,color:#212529
classDef restorationStyle fill:#d1ecf1,stroke:#0c5460,stroke-width:2px,color:#212529
class A flowStyle
class B detectionStyle
class C anonymizationStyle
class D llmStyle
class E restorationStyle
class F flowStyle
Under the Hood: System Architecture
graph LR
subgraph Input ["Input Layer"]
A["Textual Input<br/>Contains PII Entities"]
end
subgraph Detection ["Entity Detection Engine"]
B["Configurable Waterfall Detection<br/>• Phase 1: Pattern Recognition (RegEx)<br/>• Phase 2: Numerical Validation (Luhn)<br/>• Phase 3: Linguistic Analysis (NLP)<br/>• Selective Type Filtering (EntityConfig)<br/>9 Entity Types: PERSON, ORGANISATION, EMAIL, etc."]
end
subgraph Cloaking ["Entity Anonymization"]
C["Classification & Tokenization<br/>PII → Typed Placeholders<br/>Deterministic Mapping<br/>Format: <TYPE_INDEX>"]
end
subgraph Provider ["LLM Provider Interface"]
D["Provider-Agnostic API Gateway<br/>Supported: OpenAI, Anthropic Claude,<br/>Google Gemini, Azure OpenAI,<br/>AWS Bedrock, Custom Endpoints"]
end
subgraph Restoration ["Entity De-anonymization"]
E["Inverse Token Mapping<br/>Placeholder Detection<br/>Bidirectional Text Reconstruction<br/>Integrity Preservation"]
end
subgraph Output ["Output Layer"]
F["Reconstructed Response<br/>Original PII Restored<br/>Stream-Compatible"]
end
subgraph Memory ["State Management System"]
G["Singleton Dictionary Cache<br/>LRU Conversation Cache<br/>Hash-Based Entity Mapping<br/>O(1) Lookup Complexity<br/>95% Memory Reduction"]
end
%% Primary data flow
A --> B
B --> C
C --> D
D --> E
E --> F
%% State management interactions
Memory -.->|"Read/Write<br/>Entity Maps"| C
Memory -.->|"Consistency<br/>Validation"| E
%% Styling
classDef inputStyle fill:#f8f9fa,stroke:#495057,stroke-width:2px,color:#212529
classDef detectionStyle fill:#e8f4f8,stroke:#0c63e4,stroke-width:2px,color:#212529
classDef cloakingStyle fill:#fff3cd,stroke:#856404,stroke-width:2px,color:#212529
classDef providerStyle fill:#f0e6ff,stroke:#6f42c1,stroke-width:2px,color:#212529
classDef restorationStyle fill:#d1ecf1,stroke:#0c5460,stroke-width:2px,color:#212529
classDef outputStyle fill:#d4edda,stroke:#155724,stroke-width:2px,color:#212529
classDef memoryStyle fill:#f8d7da,stroke:#721c24,stroke-width:2px,color:#212529
class A inputStyle
class B detectionStyle
class C cloakingStyle
class D providerStyle
class E restorationStyle
class F outputStyle
class G memoryStyle
Built-in Memory for Multi-Turn Conversations
Pro Tip: LLMShield maintains entity consistency across conversation turns, ensuring the same person or organization always gets the same placeholder throughout your entire conversation. Unlike competing solutions that require complex implementation overhead or dependency-heavy architectures, LLMShield provides this sophisticated conversation memory as a core feature with zero external dependencies and superior performance through its optimised pure Python implementation.
sequenceDiagram
participant User
participant LLMShield
participant LLM
Note over User,LLM: Turn 1
User->>LLMShield: "Hi, I'm John Doe from DataCorp"
LLMShield->>LLM: "Hi, I'm <PERSON_0> from <ORGANISATION_1>"
LLM->>User: "Hello! How can I help?"
Note over User,LLM: Turn 2 - Same entities, same placeholders
User->>LLMShield: "Please email John Doe the report"
LLMShield->>LLM: "Please email <PERSON_0> the report"
LLM->>User: "I'll send it to John Doe right away"
Note over User,LLM: Turn 3 - New entities continue numbering
User->>LLMShield: "Also CC Sarah Wilson on this"
LLMShield->>LLM: "Also CC <PERSON_2> on this"
LLM->>User: "Perfect! I'll CC Sarah Wilson"
Note over User,LLM: Turn 4 - All entities remembered
User->>LLMShield: "Send DataCorp updates to both John and Sarah"
LLMShield->>LLM: "Send <ORGANISATION_1> updates to <PERSON_0> and <PERSON_2>"
LLM->>User: "Both John Doe and Sarah Wilson will get the DataCorp updates"
Installation
pip install llmshield
Quick Start
Basic Usage
from llmshield import LLMShield
# Initialize shield
shield = LLMShield()
# Protect sensitive information
cloaked_prompt, entity_map = shield.cloak(
"Contact John Doe at john.doe@company.com or call +1-555-0123"
)
print(cloaked_prompt)
# Output: "Contact <PERSON_0> at <EMAIL_1> or call <PHONE_2>"
# Process with LLM
llm_response = your_llm_function(cloaked_prompt)
# Restore original entities
restored_response = shield.uncloak(llm_response, entity_map)
Important: Individual
cloak()anduncloak()methods support single messages only and do not maintain conversation history. For multi-turn conversations with entity consistency across messages, use theask()method.
Direct LLM Integration
from openai import OpenAI
from llmshield import LLMShield
client = OpenAI(api_key="your-api-key")
shield = LLMShield(llm_func=client.chat.completions.create)
# Single request with automatic protection
response = shield.ask(
model="gpt-4",
prompt="Draft an email to Sarah Johnson at sarah.j@techcorp.com"
)
# Multi-turn conversation
messages = [
{"role": "user", "content": "I'm John Smith from DataCorp"},
{"role": "assistant", "content": "Hello! How can I help you?"},
{"role": "user", "content": "Email me at john@datacorp.com"}
]
response = shield.ask(model="gpt-4", messages=messages)
Streaming Support
response_stream = shield.ask(
model="gpt-4",
prompt="Generate a report about Jane Doe (jane@example.com)",
stream=True
)
for chunk in response_stream:
print(chunk, end="", flush=True)
Entity Detection
The library detects and protects the following entity types:
| Entity Type | Examples | Placeholder Format |
|---|---|---|
| Person | John Doe, Dr. Smith | <PERSON_0> |
| Organisation | Acme Corp, NHS | <ORGANISATION_0> |
| Place | London, Main Street | <PLACE_0> |
| user@domain.com | <EMAIL_0> |
|
| Phone | +1-555-0123 | <PHONE_0> |
| URL | https://example.com | <URL_0> |
| Credit Card | 4111-1111-1111-1111 | <CREDIT_CARD_0> |
| IP Address | 192.168.1.1 | <IP_ADDRESS_0> |
Configuration
Custom Delimiters
shield = LLMShield(
start_delimiter='[[',
end_delimiter=']]'
)
# Entities appear as [[PERSON_0]], [[EMAIL_1]], etc.
Conversation Caching
LLMShield implements an LRU (Least Recently Used) cache to maintain entity consistency across multi-turn conversations. The cache stores entity mappings for conversation histories, ensuring that all entities (persons, organizations, emails, phones, etc.) mentioned in different messages receive the same placeholders.
shield = LLMShield(
llm_func=your_llm_function,
max_cache_size=1000 # Default: 1000
)
Cache Sizing Guidelines
|
Small Applications
|
Medium Applications
|
Large Applications
|
Memory Calculation: Each conversation stores a dictionary mapping PII entities to their placeholders. With an average of 20 PII entities per conversation, each cache entry uses approximately 1-2KB of memory (entity text + placeholder mappings + metadata).
Cache Strategy Decision Tree:
flowchart TD
A[Start: Cache Configuration] --> B{What is your server<br/>worker lifespan?}
B -->|Long-lived<br/>Persistent workers| C{Expected concurrent<br/>conversations per worker?}
B -->|Short-lived<br/>Frequently recycled| D{Expected concurrent<br/>conversations per worker?}
C -->|Less than 500| E[Small Cache Strategy<br/>max_cache_size = 1000<br/>Memory: ~1MB]
C -->|500-5000| F[Medium Cache Strategy<br/>max_cache_size = 10000<br/>Memory: ~10MB]
C -->|More than 5000| G[Large Cache Strategy<br/>max_cache_size = 50000<br/>Memory: ~50MB]
D -->|Less than 500| H[Minimal Cache Strategy<br/>max_cache_size = 500<br/>Memory: ~500KB]
D -->|500-5000| I[Conservative Cache Strategy<br/>max_cache_size = 2500<br/>Memory: ~2.5MB]
D -->|More than 5000| J[Efficient Cache Strategy<br/>max_cache_size = 10000<br/>Memory: ~10MB]
E --> K{Do you need different<br/>caching strategies for<br/>different user groups?}
F --> K
G --> K
H --> L{Do you need different<br/>caching strategies for<br/>different user groups?}
I --> L
J --> L
K -->|No<br/>Single strategy| M[Single LLMShield Instance<br/>Use recommended cache size]
K -->|Yes<br/>Multiple strategies| N[Multiple LLMShield Instances<br/>Partition by user demographics<br/>Allocate cache per instance]
L -->|No<br/>Single strategy| O[Single LLMShield Instance<br/>Focus on fast warmup<br/>Monitor hit rates closely]
L -->|Yes<br/>Multiple strategies| P[Multiple LLMShield Instances<br/>Partition by user type<br/>Use smaller per-instance caches]
Per-Shield Caching Strategy:
Each LLMShield instance maintains its own independent cache, providing flexibility for:
- Demographic Partitioning: Separate caches for different user types (premium vs. free, geographic regions, etc.)
- Use Case Isolation: Different cache strategies for customer service vs. internal tools vs. public APIs
- Memory Allocation: Distribute memory budgets across multiple shield instances based on priority
- Custom Strategies: Implement specialized caching logic for specific workflows or data sensitivity levels
Cache Effectiveness Factors:
- Short-lived workers: Cache benefits diminish with frequent recycling - prioritize memory efficiency
- Long-lived workers: Larger caches significantly reduce "cold start" latency for entity detection
- Worker density: Many workers sharing server resources require smaller per-worker caches
- Traffic variability: Spiky loads benefit from larger caches to handle burst scenarios
Performance Impact: Cache hit rates above 80% significantly improve performance for multi-turn conversations by avoiding re-detection of previously seen entities. Size your cache based on expected concurrent "fresh" conversations that your server workers are actively serving, not total daily volume.
Selective PII Detection
New in v1.0+: LLMShield supports selective entity detection, allowing you to disable specific types of PII protection based on your requirements. This is useful when you want to protect some sensitive information while allowing other data types to pass through unchanged.
Factory Methods for Common Configurations
from llmshield import LLMShield
# Disable location-based entities (PLACE, IP_ADDRESS, URL)
shield = LLMShield.disable_locations()
# Disable person detection only
shield = LLMShield.disable_persons()
# Disable contact information (EMAIL, PHONE)
shield = LLMShield.disable_contacts()
# Enable only financial entities (CREDIT_CARD)
shield = LLMShield.only_financial()
Custom Entity Configuration
For fine-grained control, use the EntityConfig class:
from llmshield import LLMShield
from llmshield.entity_detector import EntityConfig, EntityType
# Create custom configuration
config = EntityConfig().with_disabled(
EntityType.EMAIL, # Disable email detection
EntityType.PHONE, # Disable phone detection
EntityType.URL # Disable URL detection
)
shield = LLMShield(entity_config=config)
# Or enable only specific types
config = EntityConfig().with_enabled(
EntityType.PERSON, # Only detect persons
EntityType.CREDIT_CARD # Only detect credit cards
)
shield = LLMShield(entity_config=config)
Available Entity Types
All configurable entity types
EntityType.PERSON # Names (John Doe, Dr. Smith)
EntityType.ORGANISATION # Companies (Microsoft Corp)
EntityType.PLACE # Locations (London, Main Street)
EntityType.EMAIL # Email addresses
EntityType.PHONE # Phone numbers
EntityType.URL # Web addresses
EntityType.CREDIT_CARD # Credit card numbers
EntityType.IP_ADDRESS # IP addresses
EntityType.CONCEPT # Uppercase concepts (API, SQL)
Using Selective Detection with ask()
Selective detection works seamlessly with the ask() method for end-to-end protection:
from openai import OpenAI
from llmshield import LLMShield
client = OpenAI(api_key="your-api-key")
# Create shield that ignores URLs and IP addresses
shield = LLMShield.disable_locations(llm_func=client.chat.completions.create)
# This will protect names and emails but allow URLs through
response = shield.ask(
model="gpt-4",
prompt="Contact John Doe at john@company.com or visit https://company.com"
)
# Cloaked: "Contact <PERSON_0> at <EMAIL_1> or visit https://company.com"
Performance Benefits
Selective detection can improve performance by:
- Reducing detection overhead for unused entity types
- Minimizing placeholder generation and entity mapping
- Faster text processing with fewer regex operations
|
Recommended Configurations:
|
Performance Impact:
|
Provider Compatibility
Fully Tested & Supported
| Provider | Status | Features |
|---|---|---|
| OpenAI Chat Completions API | Full Support | Chat, Streaming, Tools |
| Anthropic Messages API | Full Support | Chat, Streaming, Tools |
| OpenAI Compatibility Standard | Full Support | Universal compatibility |
Currently Unsupported (directly)
| Provider | Status | Workaround |
|---|---|---|
| Not Direct | Use compatibility wrapper | |
| Cohere | Not Direct | Use compatibility wrapper |
Note: To use unsupported providers, create a compatible wrapper that works with one of the above supported providers.
Caution: Due to the behaviour and training differences in models, a slight performance degradation may be observed. Some degree of performance loss is expected, but can be mitigated to a high degree by tuning the parameters and PII filtration level based on your requirements.
Language Support
| Language | Support Level | Accuracy |
|---|---|---|
| English | Full optimisation | ~90% |
| Other languages | Experimental | ??? |
We are working on extending support to more languages and improving the accuracy of entity detection.
Development
Setup
git clone https://github.com/yourusername/llmshield.git
cd llmshield
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -e ".[dev]"
Testing
# Run tests
make tests
# Coverage analysis
make coverage
# Code quality checks
make ruff
# Documentation coverage
make doc-coverage
Building and Publishing
Building the Package
# Install build dependencies
make dev-dependencies
# Build the package
make build
Publishing to PyPI
- Update version in
pyproject.toml - Run quality checks:
make tests make coverage make ruff
- Build and publish:
make build twine upload dist/*
Security Considerations
| Security Aspect | Recommendation |
|---|---|
| Validation | Validate cloaked outputs before LLM transmission |
| Storage | Securely store entity mappings for persistent sessions |
| Delimiters | Choose delimiters that don't conflict with your data format |
| Input Validation | Implement comprehensive input validation |
| Auditing | Regularly audit entity detection accuracy |
Contributing
See CONTRIBUTING.md for development guidelines and contribution process.
License
GNU Affero General Public License v3.0 - See LICENSE.txt for details.
Maintainers
- Aditya Dedhia (@adityadedhia)
- Sebastian Andres (@S-andres0694)
Production Usage
LLMShield is used in production environments by brainful.ai to protect user data confidentiality.
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 llmshield-1.0.0.tar.gz.
File metadata
- Download URL: llmshield-1.0.0.tar.gz
- Upload date:
- Size: 544.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9256b080ddb3cc5061bd67e514b5c20c7ecf755c1ca3381e1c02ddf2ff1c141
|
|
| MD5 |
536216babc0722217a8dc5d899eae4dc
|
|
| BLAKE2b-256 |
2eb24c1649e46a041967f36412dc2eb318445566866ed02573608d70e2b138b4
|
File details
Details for the file llmshield-1.0.0-py3-none-any.whl.
File metadata
- Download URL: llmshield-1.0.0-py3-none-any.whl
- Upload date:
- Size: 480.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72c86638d25cb64ab581c2b86226520d9ad0acfde267378e88ab71f85d644181
|
|
| MD5 |
564d494c246d871d498551ae8bec8667
|
|
| BLAKE2b-256 |
0d59a79d1a2b088c2bdcbd002f2212ad6e03da17f4fef5186b32c548decf9c20
|