Project Setup 1. Clone the Git Repository git clone 2. Create a virtual environment python3 -m venv venv 3. Activate the virtual environment source venv/bin/activate 4. Install the dependencies pip install -r requirements.txt 5. Create .env file to store the Gemini API credentials touch .env Run the FastAPI server uvicorn app:app --reload