About this project

Smart Expense Receipt Parser (Prototype) is a prototype FastAPI service that returns a mocked parsed receipt response matching the PRD. ### Quick Start To set up and run the project: 1. Create a virtual environment (recommended) using Python. 2. Install dependencies from the requirements.txt file. 3. Run the app using Uvicorn on port 8000 with reload enabled. 4. Run the test suite quietly using pytest. ### API The service exposes the following endpoint: - POST `/api/parse-receipt`: Accepts multipart form data containing `employeeId`, `departmentId`, and an `image` file. It returns a mocked parsed JSON response matching the PRD.