Spaces:
Runtime error
Runtime error
File size: 609 Bytes
410242f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | """
Agentic Document Intelligence System
Advanced AI-powered document processing
"""
__version__ = "1.0.0"
__author__ = "AI Development Team"
__title__ = "Document Intelligence System"
from app.pipeline import DocumentProcessingPipeline
from agents.classifier import DocumentClassifier
from agents.extractor import DataExtractor
from agents.validator import DataValidator
from tools.ocr_engine import OCREngine
from tools.table_parser import TableParser
__all__ = [
"DocumentProcessingPipeline",
"DocumentClassifier",
"DataExtractor",
"DataValidator",
"OCREngine",
"TableParser",
]
|