This project is a full-stack application for an AI-powered tutor assistant.
- backend/: Python FastAPI application handling AI logic (Whisper, LLM, OCR).
- frontend/: React application for the user interface.
- Navigate to the backend folder:
cd backend - Create a virtual environment (optional but recommended):
python -m venv venv # Windows venv\Scripts\activate # Mac/Linux source venv/bin/activate
- Install dependencies:
pip install -r requirements.txt
- Run the server:
The API will be available at
uvicorn app.main:app --reload
http://localhost:8000. API Documentation:http://localhost:8000/docs
See frontend/README.md for setup instructions.