TSZ (Thyris Safe Zone)
April 23, 2026 · View on GitHub
TSZ (Thyris Safe Zone) is a PII Detection and Guardrails System engineered by Thyris.AI. It acts as a zero‑trust layer between your data and external systems, ensuring that sensitive information—Personal Identifiable Information (PII), secrets, and proprietary data—never leaves your secure perimeter unintentionally.
TSZ provides real‑time scanning, redaction, and blocking capabilities so that you can safely integrate LLMs and third‑party APIs into your existing applications.
Sponsors
|
|
Termius Termius provides a secure, reliable, and collaborative SSH client. |
Features
- Real‑time detection of PII, secrets and sensitive patterns
- Redaction with context‑preserving placeholders (for example,
[EMAIL],[CREDIT_CARD]) - Configurable guardrails using patterns, validators and templates
- Allowlist and blocklist management
- Hot reloading of rules via APIs
- High‑performance implementation in Go with Redis caching
- Native AWS Bedrock integration – Use Anthropic Claude, Amazon Titan, Meta Llama, Mistral, and Cohere models directly
- Multi-provider AI support – OpenAI-compatible endpoints (OpenAI, Azure OpenAI, Ollama) and AWS Bedrock
- OpenAI-compatible LLM gateway – Drop-in replacement for OpenAI API with built-in guardrails
- CLI Tool – Full management and scanning from the command line (
pkg/tsz-cli)
Getting Started
For all user and customer‑facing documentation, see the docs/ directory:
- What is TSZ? – Conceptual and product overview
docs/WHAT_IS_TSZ.md - Product Overview (executive friendly) –
docs/PRODUCT_OVERVIEW.md - Quick Start Guide – Run TSZ locally and call
/detect
docs/QUICK_START.md - API Reference (Enterprise) – Full REST API documentation
docs/API_REFERENCE.md - Architecture & Security Overview – Architecture, data flows, security controls
docs/ARCHITECTURE_SECURITY.md - Security Roadmap – Current security hardening plan and milestones
docs/SECURITY_ROADMAP.md - Postman Collection – Ready‑to‑use collection
docs/TSZ_Postman_Collection.json
If you are evaluating TSZ for the first time, we recommend the following order:
docs/WHAT_IS_TSZ.mddocs/PRODUCT_OVERVIEW.mddocs/QUICK_START.mddocs/API_REFERENCE.md
For a more detailed map of the documentation set, see docs/README.md.
Client Libraries (SDKs)
TSZ provides official client libraries for common stacks:
-
Go client (
tszclient-go) – for Go services that want a typed wrapper around/detectand the LLM gateway.
See:pkg/tszclient-go/README.md. -
CLI (
tsz) – Command-line interface for scanning and administration.
See:pkg/tsz-cli/README.md. -
Python client (
tszclient_py/ packagetszclient-py) – for Python services that prefer a smallrequests-based helper instead of calling HTTP manually. Install from GitHub:pip install "tszclient-py @ git+https://github.com/thyrisAI/safe-zone.git@main"If TSZ auth is enabled, pass
api_keyinTSZConfig(or setTSZ_AUTH_TOKENin the demo).A runnable example lives under
examples/python-sdk-demo.
Testing
TSZ includes a comprehensive test suite with 55+ tests covering unit, integration, and end-to-end scenarios:
# Run all tests
go test ./tests/... -v
# Run specific test suites
go test ./tests/unit/... # Unit tests (no dependencies)
go test ./tests/integration/... # Integration tests (requires TSZ + DB + Redis)
go test ./tests/e2e/... # End-to-end tests (full system)
Test Coverage:
- Unit Tests (40+): Core business logic, AI providers, configuration, caching
- Integration Tests (15+): API endpoints, error handling, concurrent requests
- E2E Tests (5): Full system workflows, streaming, health checks
For detailed information about the test suite, see tests/README.md.
Contributing
We welcome community contributions.
- Please read our Contributing Guide for details on how to set up a development environment, run tests and propose changes.
- By participating in this project, you agree to follow our Code of Conduct.
- For reporting security issues, do not open a public GitHub issue. Instead, follow the process described in our Security Policy.
License
This project is licensed under the Apache License, Version 2.0. See the LICENSE file for the full text.
Unless otherwise noted, all contributions to this repository are also licensed under the Apache License 2.0.