Hi Quivr team,
We're building AIR Blackbox, an open-source EU AI Act compliance scanner for Python AI frameworks. We've been benchmarking real-world frameworks (CrewAI, LangFlow, Quivr) to validate our scanner's accuracy and build comparison data ahead of the August 2, 2026 enforcement deadline.
We ran a full scan against the quivr core library and wanted to share the results. We're genuinely interested in your feedback β both to improve our scanner and to flag anything useful for your roadmap.
Scan Summary
| Article |
Status |
Key Finding |
| Art. 9 β Risk Management |
β οΈ WARN |
Fallback patterns found in 3 files. Error handling in 2/10 LLM call files. No risk assessment doc. |
| Art. 10 β Data Governance |
β οΈ WARN |
Pydantic validation in 15/77 files (solid). No PII detection/redaction library. |
| Art. 11 β Technical Documentation |
β
PASS |
79% type hint coverage. README present. 21% docstring coverage on public functions. |
| Art. 12 β Record-Keeping |
β οΈ WARN |
Langfuse integration in 6 files with production-grade tracing, but only 1 action audit file β thin for full audit trail requirements. |
| Art. 14 β Human Oversight |
β οΈ WARN |
No human-in-the-loop approval gates. Basic execution limits (max_tokens, max_iterations) but no explicit budget enforcement or kill switch. |
| Art. 15 β Accuracy & Security |
β οΈ WARN |
No prompt injection defense. Output validation in 2 files. Retry logic in 1 file. |
Overall: 1/6 articles passing, 5/6 at warning level.
What We Got Right (We Think)
- Langfuse integration is real compliance infrastructure. The
LangfuseService wrapper in quivr_rag.py with LangchainMetadata tracking trace_id, user_id, session_id is solid tracing. However, with only 1 action audit file alongside the Langfuse traces, we scored record-keeping as WARN rather than PASS β the tracing is good but the audit trail coverage is thin.
- Type hints are strong. 79% coverage (107/136 public functions) is above average for the frameworks we've scanned. This earned the only PASS.
- Pydantic validation is present but limited.
ConfigDict(extra="forbid") in base_config.py enforces schema validation. However, we noticed a comment about field_validator conflicts with Pydantic v1 β is this still the case?
What We Want Your Feedback On
- Did we miss something? Our scanner samples files by compliance relevance. If there's PII handling, human oversight, or security code we didn't catch, we'd love to know β it means our file sampling needs tuning.
- Is the Langfuse integration deeper than we found? We scored record-keeping as WARN because the audit trail beyond Langfuse is thin (1 action audit file). Is there a persistence layer or additional audit infrastructure we missed?
- Human oversight patterns? We found zero HITL patterns (approval gates, confirmation prompts,
@human_feedback decorators). Is this by design (Quivr as a library delegates this to the application layer), or is it a gap you're aware of?
Context
We're scanning frameworks to build benchmark data β not to rank or criticize. We published similar findings for CrewAI (4/6 passing) and LangFlow (4/6 passing) and are sharing with each team to validate accuracy. We previously engaged with the Haystack team at deepset and their feedback helped us fix false positives in our scanner.
The scanner is open-source: air-blackbox on PyPI. You can reproduce these results with:
pip install air-blackbox
air-blackbox setup # pulls the AI compliance model
air-blackbox comply --scan /path/to/quivr -v --deep
The full scan results are available on request β we're happy to share the raw JSON output.
Happy to discuss anything here. Thanks for building Quivr β the Langfuse + LangGraph architecture is clean.
β Jason Shotwell
AIR Blackbox | GitHub
Hi Quivr team,
We're building AIR Blackbox, an open-source EU AI Act compliance scanner for Python AI frameworks. We've been benchmarking real-world frameworks (CrewAI, LangFlow, Quivr) to validate our scanner's accuracy and build comparison data ahead of the August 2, 2026 enforcement deadline.
We ran a full scan against the
quivrcore library and wanted to share the results. We're genuinely interested in your feedback β both to improve our scanner and to flag anything useful for your roadmap.Scan Summary
Overall: 1/6 articles passing, 5/6 at warning level.
What We Got Right (We Think)
LangfuseServicewrapper inquivr_rag.pywithLangchainMetadatatrackingtrace_id,user_id,session_idis solid tracing. However, with only 1 action audit file alongside the Langfuse traces, we scored record-keeping as WARN rather than PASS β the tracing is good but the audit trail coverage is thin.ConfigDict(extra="forbid")inbase_config.pyenforces schema validation. However, we noticed a comment about field_validator conflicts with Pydantic v1 β is this still the case?What We Want Your Feedback On
@human_feedbackdecorators). Is this by design (Quivr as a library delegates this to the application layer), or is it a gap you're aware of?Context
We're scanning frameworks to build benchmark data β not to rank or criticize. We published similar findings for CrewAI (4/6 passing) and LangFlow (4/6 passing) and are sharing with each team to validate accuracy. We previously engaged with the Haystack team at deepset and their feedback helped us fix false positives in our scanner.
The scanner is open-source:
air-blackboxon PyPI. You can reproduce these results with:pip install air-blackbox air-blackbox setup # pulls the AI compliance model air-blackbox comply --scan /path/to/quivr -v --deepThe full scan results are available on request β we're happy to share the raw JSON output.
Happy to discuss anything here. Thanks for building Quivr β the Langfuse + LangGraph architecture is clean.
β Jason Shotwell
AIR Blackbox | GitHub