Guardrails for AI agents. Two lines of code.

from proxy0 import Guard # Wrap your LLM with guardrails guard = Guard( budget=0.50, # Stop runaway costs block_pii=True, # Redact sensitive data block_injections=True ) secure_llm = guard.wrap(llm)

Coming Soon