Tech
llm-guard is archived. I built a deterministic replacement.
safe = vault.scan(text, redact=True).redacted_text
Scan model output too , not just user input . The threat model changed the day agents started executing tool output . Untrusted text does not only come from users anymore :
python
result = vault.scan(model_output)
Compose your own policy with per-scanner thresholds:
python
from llm_sentinel import Vault, SecretsScanner, PIIScanner, PromptInjecti...
Read the full discussion on Dev.to
This article was aggregated from Dev.to. Click to join the conversation.
View on Dev.to