This release is a pre-release and may not be stable for production use.
GuardTrellis
A small Python SDK for local checks around model inputs, complete outputs, retrieved text, and proposed tool calls. Policies are explicit, composable, and independent of model providers.
Alpha: 0.1.0a1. APIs may change before a stable release. Supported Python: 3.11–3.14. Apache-2.0 licensed. Verified package availability is tracked in the first alpha release issue.
Use an activated virtual environment, then clone and install the source:
git clone https://github.com/sahilmathur254/guardtrellis.git
cd guardtrellis
python -m pip install -e .
python examples/plain_callable.py
from guardtrellis import Guard, PIIScanner, SecretScanner
guard = Guard(
input_scanners=[SecretScanner(), PIIScanner()],
output_scanners=[SecretScanner(), PIIScanner()],
)
# Deterministic local demonstration, not a real model integration.
result = guard.run("Contact casey@example.org", lambda text: f"Received: {text}")
print(result.require_text()) # Received: Contact [PII]
print(result.diagnostics()) # Metadata only; no matched strings or prompt text.
run calls your callback only after accepted input checks, then checks the complete
returned string before exposing it. Use await guard.arun(text, callback) for async work;
both sync and async callbacks work there. Provider SDKs are not required by the core.
| Check | Default | Scope |
|---|---|---|
PIIScanner |
redact | ASCII email, contiguous international phone, US SSN shapes |
SecretScanner |
block | Selected GitHub tokens, AWS access-key IDs, PEM private keys |
InvisibleScanner |
warn | Unicode control/format characters except tab and newlines |
LiteralScanner([...]) |
block | Configured literal substrings; optional ASCII case folding |
JSONScanner(schema) |
block invalid data | Strict JSON and constrained Draft 2020-12 schemas |
ToolGuard({name: schema}) |
block invalid calls | Exact tool names and object argument schemas |
No scanners are installed implicitly: Guard() permits bounded text. Choose policies for each
boundary. Heuristic matches are signals, not probabilities or comprehensive protection.
from guardtrellis import Action, Guard, JSONScanner, LiteralScanner, Stage, ToolGuard
guard = Guard(
retrieval_scanners=[LiteralScanner(["confidential"], action=Action.BLOCK)],
output_scanners=[JSONScanner({"type": "object", "required": ["answer"]})],
)
retrieval = guard.scan("A public reference", stage=Stage.RETRIEVAL)
# In async code: await guard.ascan("A public reference", stage=Stage.RETRIEVAL)
tools = ToolGuard(
{
"search": {
"type": "object",
"properties": {"query": {"type": "string", "maxLength": 200}},
"required": ["query"],
"additionalProperties": False,
},
}
)
call = tools.validate("search", '{"query":"public documentation"}')
name, arguments = call.require_call()
# Your application must still enforce identity, permissions, and execution limits.
ALLOW, WARN, and REDACT expose result.text; BLOCK and ERROR expose None.
require_text() / require_call() raise a payload-free Rejected exception on rejection.
WARN deliberately permits delivery. Scanner/callback exceptions are errors, never successful
checks. The first block/error stops its stage. Input rejection prevents the callback entirely.
Stages have separate scanner lists: input_scanners, output_scanners, retrieval_scanners,
and tool_scanners. Use scan(text, stage=Stage.INPUT/OUTPUT/RETRIEVAL/TOOL) or ascan;
the default stage is Stage.INPUT. Retrieval/tool checks must be invoked explicitly;
run does not discover or intercept these operations. ToolGuard adds name/schema validation.
Scanners run in configuration order. Each sees the text produced by preceding redactions. Findings record half-open character offsets, scanner index, and the input revision they refer to; every redacting scanner increments the revision. Offsets from different revisions must not be applied to the original string. No originals or rehydration maps are retained.
Defaults: 100,000 characters per stage, 256 findings per scanner, JSON nesting at most 32, and a 5-second per-operation async wait. Synchronous calls have no execution deadline. Async cancellation cannot terminate a running thread or preempt a coroutine that blocks the event loop. Timed-out work may continue and have side effects. Use process isolation and application concurrency limits when execution must be forcibly bounded.
Examples and development
uv sync --all-extras --group dev
uv run python examples/plain_callable.py
uv run python examples/fastapi_app.py # Local TestClient demo, no server needed
uv run python examples/langgraph_app.py # Local graph, no provider credentials
uv run pytest
uv run ruff check .
uv run ruff format --check .
uv run mypy
uv run python evaluation/run.py
uv build
uv run python scripts/smoke_dist.py
FastAPI and LangGraph are optional extras (.[fastapi], .[langgraph]). LangGraph input
checks run before text enters graph state. The example also checks model output before
returning it to graph state. Instrumentation around callbacks may still capture raw data.
See API details, limitations and trust boundaries, evaluation methodology, measured smoke results, and contribution guidance. These checks do not provide comprehensive prompt-injection prevention, factual verification, regulatory compliance, or a tool sandbox.
Roadmap and contributions
Use the public GitHub Project to find ready work and track progress. The roadmap explains the release milestones, dependencies, and longer-term proposals. Start with a good first issue or a help wanted issue, then follow the contributor workflow.
See the changelog for version-specific behavior and the release guide for packaging checks, TestPyPI rehearsal, and maintainer-approved publication.
Release files for guardtrellis 0.1.0a1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| guardtrellis-0.1.0a1.tar.gz | 185.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| guardtrellis-0.1.0a1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 204.9 kB
Release files / guardtrellis-0.1.0a1.tar.gz
| Download URL | guardtrellis-0.1.0a1.tar.gz |
|---|---|
| Size | 185.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9e911700d4211ca8aaf38c09a19f73a5d53025d8b13c56d59283b7b4a7fc4ce1
|
|
BLAKE2b-256 checksum How to use checksums |
53f0d89e2e01e377542acaaf180bccad350886429dc8eb3b5ec1693a67022457
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / guardtrellis-0.1.0a1-py3-none-any.whl
| Download URL | guardtrellis-0.1.0a1-py3-none-any.whl |
|---|---|
| Size | 19.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a8e83806c015b708dff34b9cbd5b219d3791532dd2d24b9b5962686e01eada94
|
|
BLAKE2b-256 checksum How to use checksums |
2be1e91b5c255bf3168e20cfa0d82c33d9e554749bd5ba368c7e7f03cacfb9ed
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log