An intelligent data processing pipeline for extracting structured information from documents (PDFs and images) using AI models.
- PDF and image file processing
(In the future) - Automated schema extraction
- AI-powered data extraction
- Multi-format output generation
- Configurable processing pipelines
- Clone the repository
git clone https://github.com/drLacheheb/DataEntryAI.git
cd DataEntryAI- Set up virtual environment (recommended)
python -m venv venv
source venv/bin/activate- Install dependencies
pip install -r requirements.txtpython src/main.py- PDF
(Not yet implemented) - JPEG (.jpg, .jpeg)
- PNG (.png)
├── src/ - Main source code
│ ├── ai/ - AI model integration
│ ├── processing/ - Data processing modules
│ └── utils/ - Common utilities
├── data/ - Data assets
│ ├── input/ - Input documents
│ └── output/ - Processing results
└── requirements.txt - Dependency list
Note: Before running the application, ensure your input files are placed in the data/input/ directory and
selected in the src/main.py (cli tool can be implemented...) ,appropriate AI model weights are configured.