Skip to main content

Security guards for LLM-powered and agentic AI applications. Zero dependencies. Covers OWASP Top 10 for LLMs 2025.

Project description

llm-trust-guard

Security guards for LLM-powered applications. Zero dependencies. Python port of the npm package.

Installation

pip install llm-trust-guard

Quick Start

from llm_trust_guard import InputSanitizer, EncodingDetector, CompressionDetector

# Check for prompt injection
sanitizer = InputSanitizer(threshold=0.3)
result = sanitizer.sanitize(user_input)
if not result.allowed:
    print(f"Blocked: {result.matches}")

# Check for encoding bypass attacks
encoder = EncodingDetector()
result = encoder.detect(user_input)
if not result.allowed:
    print(f"Encoded threat: {result.violations}")

# Check structural similarity to known attacks (NCD)
detector = CompressionDetector()
result = detector.detect(user_input)
if not result.allowed:
    print(f"Similar to: {result.ncd_analysis.closest_category}")

Guards (Phase 1)

Guard Purpose Method
InputSanitizer Prompt injection detection (170+ patterns, 11 languages) Regex + PAP
EncodingDetector Encoding bypass (9 formats: Base64, URL, Unicode, Hex, HTML, ROT13, Octal, Base32) Decode + scan
CompressionDetector Structural similarity to known attacks gzip NCD (135 templates)
HeuristicAnalyzer Synonym expansion + structural + statistical analysis 8 attack categories
OutputFilter PII/secret detection and masking in LLM output Regex + redaction

Key Features

  • Zero dependencies — only Python stdlib (re, zlib, base64, html)
  • Same patterns as the npm package — feature parity with llm-trust-guard v4.13.1
  • Fast — all checks complete in <5ms
  • Python 3.9+ compatible

More Guards Coming

The npm package has 31 guards total. Python Phase 2 will add:

  • ExternalDataGuard, AgentSkillGuard, SessionIntegrityGuard
  • SchemaValidator, ToolResultGuard, TokenCostGuard

Links

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llm_trust_guard-0.4.1.tar.gz (36.7 MB view details)

Uploaded Source

Built Distribution

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

llm_trust_guard-0.4.1-py3-none-any.whl (167.5 kB view details)

Uploaded Python 3

File details

Details for the file llm_trust_guard-0.4.1.tar.gz.

File metadata

  • Download URL: llm_trust_guard-0.4.1.tar.gz
  • Upload date:
  • Size: 36.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for llm_trust_guard-0.4.1.tar.gz
Algorithm Hash digest
SHA256 3a5d156968ff5703ab2abd4bb3992c46f3f11b92557658a6c2129ace40546d2e
MD5 26a23b875cf692d86c9b9deae35fa650
BLAKE2b-256 3686ce1e2274ad97b2a3c17ab3a80e6ab60e10b9716e9e4e09813daa6c035df4

See more details on using hashes here.

File details

Details for the file llm_trust_guard-0.4.1-py3-none-any.whl.

File metadata

File hashes

Hashes for llm_trust_guard-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0a81726bd0b822211753b3a4ff5f8b5c6c959df4238de9d2af4d457504b094ab
MD5 a57a525831881e97c2c56279686ace81
BLAKE2b-256 b0ef05aca5d74a40b045245b6eb59cc035f9f17fbceabdc38c38acd1ece96d67

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page