The missing data layer for AI agents - Auto-validates data quality with one decorator. Works with any framework.
Project description
ADRI - Agent Data Readiness Index
AI agents break on bad data. ADRI fixes that with one decorator.
from adri import adri_protected
@adri_protected(standard="customer_data", data_param="data")
def process_customers(data):
# Your agent logic here
return results
Auto-validates data quality. Works with any framework. 2 minutes to integrate.
How ADRI Works
flowchart LR
A[Your Function Called] --> B[๐ก๏ธ ADRI Intercepts]
B --> C{Quality Check<br/>5 Dimensions}
C -->|Score โฅ 80| D[โ
ALLOW<br/>Function Runs]
C -->|Score < 80| E[โ BLOCK<br/>Error Raised]
D --> F[๐ Log Results]
E --> F
style A fill:#e3f2fd,stroke:#2196f3,stroke-width:2px
style B fill:#fff3e0,stroke:#ff9800,stroke-width:3px
style C fill:#f3e5f5,stroke:#9c27b0,stroke-width:2px
style D fill:#e8f5e9,stroke:#4caf50,stroke-width:2px
style E fill:#ffebee,stroke:#f44336,stroke-width:2px
style F fill:#fafafa,stroke:#757575,stroke-width:1px
In plain English: ADRI sits between your code and its data, checking quality before letting data through. Good data passes, bad data gets blocked.
What is ADRI?
ADRI is the missing data layer for AI agents. It protects your AI agent workflows from bad data by:
- Auto-validating data quality across 5 dimensions (validity, completeness, consistency, accuracy, timeliness)
- Auto-generating quality standards on first successful run - no manual configuration
- Blocking or warning on quality failures based on your preference
- Logging insights locally for debugging and development
Framework agnostic: Works with LangChain, CrewAI, AutoGen, LlamaIndex, Haystack, Semantic Kernel, and any Python function.
Why ADRI?
AI agents are powerful, but fragile. One malformed field or missing value can crash your entire workflow. Traditional validation is tedious - you write dozens of if statements, manually check types, and hope you caught everything.
ADRI learns what good data looks like and enforces it automatically. Add one decorator, run with good data once, and you're protected.
Complete Example
from adri import adri_protected
import pandas as pd
@adri_protected(standard="customer_data", data_param="customer_data")
def analyze_customers(customer_data):
"""Your AI agent logic."""
print(f"Analyzing {len(customer_data)} customers")
return {"status": "complete"}
# First run with good data
customers = pd.DataFrame({
"id": [1, 2, 3],
"email": ["user1@example.com", "user2@example.com", "user3@example.com"],
"signup_date": ["2024-01-01", "2024-01-02", "2024-01-03"]
})
analyze_customers(customers) # โ
Runs, auto-generates standard
What happened:
- Function executed successfully
- ADRI analyzed the data structure
- Generated quality standard in
ADRI/dev/standards/customer_data.yaml - Future runs validate against this standard
Future runs with bad data:
bad_customers = pd.DataFrame({
"id": [1, 2, None], # Missing ID
"email": ["user1@example.com", "invalid-email", "user3@example.com"], # Bad email
# Missing signup_date column
})
analyze_customers(bad_customers) # โ Raises exception with quality report
Installation
pip install adri
Requirements: Python 3.10+
โญ Star us if ADRI saves you time - it helps us grow!
Quick Links
- Quickstart Guide - 2-minute integration guide
- Getting Started - Detailed 10-minute tutorial
- Standards Library - 13 production-ready standards to copy and use
- How It Works - Five quality dimensions explained
- Framework Patterns - LangChain, CrewAI, AutoGen examples
- CLI Reference - Command-line tools
- FAQ - Common questions
- Examples - Real-world examples
Features
๐ฏ One Decorator, Complete Protection
@adri_protected(standard="your_data", data_param="data")
def your_function(data):
return results
๐ค Framework Agnostic
Works with any AI agent framework:
- LangChain & LangGraph
- CrewAI
- AutoGen
- LlamaIndex
- Haystack
- Semantic Kernel
- Generic Python
๐ Five Quality Dimensions
ADRI validates:
- Validity - Data types and formats
- Completeness - Required fields present
- Consistency - Cross-field relationships
- Accuracy - Value ranges and patterns
- Timeliness - Data freshness
๐ Auto-Generation
No manual configuration. ADRI learns from your data:
- Runs successfully with good data โ generates standard
- Future runs โ validates against standard
- Customize generated standards as needed
๐ก๏ธ Protection Modes
# Raise mode (default) - raises exception
@adri_protected(standard="data", data_param="data", on_failure="raise")
# Warn mode - logs warning, continues
@adri_protected(standard="data", data_param="data", on_failure="warn")
# Continue mode - silently continues
@adri_protected(standard="data", data_param="data", on_failure="continue")
๐ง CLI Tools
adri guide # Interactive walkthrough (recommended for first-time users)
adri setup # Initialize ADRI
adri generate-standard data.json # Generate standard
adri assess data.csv --standard my_standard # Assess data quality
adri list-standards # List standards
adri validate-standard my_standard.yaml # Validate standard
๐ Local Logging
Developer-friendly insights during development:
- Quality scores and assessments
- Dimension-specific failures
- Auto-generated standards
- Stored in
ADRI/dev/logs/
Common Use Cases
API Data Validation
@adri_protected(standard="api_response", data_param="response")
def process_api_data(response):
return transform(response)
What it protects: API response data structure Sample data: examples/data/api_response.json Use when: Validating third-party API responses before processing
Multi-Agent Workflows
@adri_protected(standard="crew_context", data_param="context")
def crew_task(context):
return crew.kickoff(context)
What it protects: Agent communication context Sample data: examples/data/crew_context.json Use when: Coordinating multi-agent workflows (CrewAI, AutoGen, custom)
RAG Pipelines
@adri_protected(standard="documents", data_param="docs")
def index_documents(docs):
return index.insert(docs)
What it protects: Document structure before indexing Sample data: examples/data/rag_documents.json Use when: Validating documents before vector store indexing (LlamaIndex, Haystack)
Note: ADRI validates data structure, not content. For RAG, it ensures each document has required fields (id, text, metadata) and correct types, preventing indexing failures from malformed data.
Got a different use case? Share your story or contribute a standard - help the community!
๐ Don't Start from Scratch - Use Catalog Standards
13 battle-tested standards ready to copy and use - No need to write validation rules from scratch.
Business Domains
- ๐ง Customer Service - Support tickets, interactions
- ๐ E-commerce Orders - Order processing, fulfillment
- ๐ฐ Financial Transactions - Payments, accounting
- ๐ฅ Healthcare Patients - EHR systems, patient records
- ๐ Marketing Campaigns - Campaign tracking, ROI
AI Frameworks
- ๐ LangChain Chains - Chain input validation
- ๐ค CrewAI Tasks - Multi-agent task context
- ๐ LlamaIndex Documents - RAG document structure
- ๐ฌ AutoGen Messages - Agent message validation
Generic Templates
- ๐ API Responses - REST API response structure
- โฑ๏ธ Time Series - Metrics, sensor data
- ๐ Key-Value Pairs - Configuration, settings
- ๐ณ Nested JSON - Hierarchical structures
๐ Full Catalog | Can't find your use case? Add it! - Takes 15 minutes, helps everyone.
๐ค Share Your Standards
Built something with ADRI? Your standard could help hundreds of engineers.
- Use ADRI on your data
- Polish your standard
- Submit a PR - Contribution guide
Why contribute?
- ๐ฏ Get featured in the catalog
- ๐ฌ Connect with others in your domain
- ๐ Help the community solve similar problems
Start Contributing | Discuss Ideas
Development
# Clone repository
git clone https://github.com/adri-standard/adri.git
cd adri
# Install in development mode
pip install -e .
# Run tests
pytest
# Run linters
flake8 src/
black src/
See CONTRIBUTING.md for contribution guidelines.
License
Apache 2.0 License. See LICENSE for details.
Community & Support
Get Help
- ๐ฌ GitHub Discussions - Ask questions, share use cases
- ๐ GitHub Issues - Report bugs, request features
- ๐ Documentation - Comprehensive guides and tutorials
Connect with the Team
- ๐ค Thomas Russell - Founder (updates & engagement)
- ๐ฆ @thomas-ds.bsky.social - Real-time updates on Bluesky
- ๐ข Verodat - Company behind ADRI
Support This Project
If ADRI saves you time, show your support:
- โญ Star on GitHub - Helps us reach more developers
- ๐ฃ๏ธ Share your wins: "Solved [your use case] with #ADRI #AIAgents"
- ๐ค Contribute a standard: Your use case could help hundreds - Guide
- ๐ฌ Discuss ideas: Propose new standards or share what you're building
One decorator. Any framework. Reliable agents.
Built with โค๏ธ by Thomas Russell at Verodat
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file adri-5.1.0.tar.gz.
File metadata
- Download URL: adri-5.1.0.tar.gz
- Upload date:
- Size: 940.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85e4d32293f9a3791fcffd4d39ff46bcd3ceb30138831ca1da1e1d37061ac3a6
|
|
| MD5 |
eda06855eb67b95070672fac3a0b6031
|
|
| BLAKE2b-256 |
792345afcae32d22dcd67ae2b0a2edc82f7a400df3126577b02acb7c950f5774
|
File details
Details for the file adri-5.1.0-py3-none-any.whl.
File metadata
- Download URL: adri-5.1.0-py3-none-any.whl
- Upload date:
- Size: 257.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f277abdbec00b10ad710f4153ae2e073ee8810005bfa8961f32c724f5bbc9cfe
|
|
| MD5 |
108e08db3d6fa0d868cda44b2fd1177b
|
|
| BLAKE2b-256 |
30f9b3e120e220fd128a7cfccb13da20dd45f2969d1831e1431f581019882442
|