The boundary model
An AI system becomes risky when one kind of content is treated as if it carried more authority than it should. In practice that usually happens at six boundaries:- user input entering the model on the
inputpath, - retrieved context before it is appended to a prompt,
- memory or conversation state before it is replayed,
- tool output before it is trusted or fed back into the model,
- model output before it reaches a user or another system,
- side effects before the application executes a tool action.
The control stack
No single control solves the whole problem. Safer systems usually combine:- business authorization and identity checks,
- Anthale policy evaluation at content boundaries,
- least-privilege tool permissions,
- deterministic validation for structured outputs and arguments,
- approval flows for high-impact actions,
- logging and review for runtime signals and incidents.
Where Anthale fits
Anthale is most useful where risky content moves between actors or systems. That includes model input, retrieved context, tool output, and final responses. Anthale evaluates the policy you configure and returns one action:allow, detect, redact, or block.
That runtime decision makes the surrounding controls easier to keep consistent. You do not need each service to guess how prompt injection, data leakage, or unsafe links should be handled at the last minute.
How to use this docs area
Use Secure AI Systems Overview for the task-oriented guides. Then move into the guardrail deep dives when you need a more detailed threat model:- Prompt Injection Protection
- Advanced Prompt Injection Paths
- Prompt Injection Impact Paths
- Data Leakage Prevention
- Link Control
Move from concept to implementation
- Secure AI Systems Guides when you want the task-oriented pages for AI agent security, RAG security, MCP security, and output validation.
- Create a first policy when you want to test Anthale on one boundary and one workflow first.
- See the enforcement API when you need the exact runtime contract before wiring a production path.