Spaces:
Sleeping
Sleeping
File size: 672 Bytes
3d8e949 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""
Document Management System for PolicyWise RAG Application
This module provides comprehensive document lifecycle management including:
- Multi-file upload with drag-and-drop interface
- Async document processing pipeline
- Document organization and metadata management
- Processing status monitoring and analytics
- Integration with existing RAG pipeline and vector database
Built using the app factory pattern with lazy loading for optimal memory usage.
"""
from .document_service import DocumentService
from .processing_service import ProcessingService
from .upload_service import UploadService
__all__ = ["DocumentService", "ProcessingService", "UploadService"]
|