Welcome to FinGuard 🛡️
The Open-Source LLM Firewall for Financial AI.
FinGuard is a high-performance orchestration layer designed to protect generative AI applications from real-world enterprise threats: prompt injections, PII leakage, numerical hallucinations, and agentic tool misuse.
It provides declarative security via standard YAML files, enabling SOC teams to lock down LLM flows without writing complex Python infrastructure.
Core Philosophies
- Zero-Friction Integration: We believe security tools fail if they force developers to rewrite their application logic. FinGuard provides native wrappers for
LangChain,LlamaIndex, andVanillaPython loops. You don't have to change your orchestrator to secure your agent. - Forensic Traceability: "Black box" firewalls are useless in an incident response scenario. FinGuard boasts out-of-the-box integration with
LangfuseandOpenTelemetry. Every guard decision generates a reconstructable, immutable trace ID. - Agentic Self-Correction: When FinGuard blocks an AI action, it doesn't just crash. It raises structured exceptions (
ToolCallViolation,FinGuardViolation) containing exactly why it was blocked, allowing your agents to intelligently self-correct and try a safer approach. - Local by Default: Financial data cannot be sent to 3rd-party guardrail APIs. FinGuard runs entirely local, leveraging highly optimized CPU ONNX runtimes for $< 15ms$ latency overhead.
Global Architecture
graph TD
User([User / Agent Orchestrator]) -->|Prompt| FG[FinGuard Orchestrator]
FG -->|1. Input Pipe| PII[PII & Injection]
FG -->|2. Tool Intercept| TG[Agentic Tool Guards]
PII -->|Scrubbed| LLM[LLM / OpenAI]
LLM -->|3. Output Pipe| Val[Financial Validators]
Val -->|Safe Output| User
FG -.->|Async Traces| LF[Langfuse / OpenTelemetry]
Where to go next?
- Installation Guide — Start protecting your LLMs in 2 minutes.
- Protection Policies — Understand how to configure FinGuard using declarative YAML.
- Agentic Tool Guards — Learn how to stop your agents from executing rogue tools.
- PII Anonymization — Explore our dual engine (Presidio + Regex) for global and regional data protection.
- LangChain Cookbook — Mix and match FinGuard inside a conversational React Agent.