This project consists of two main parts:
- Backend: A FastAPI application handling Twilio webhooks, transcription, and data processing.
- Frontend: A Gradio-based user interface for emergency response management.
- Navigate to the backend directory: `cd backend`
- Create a virtual environment: `python -m venv venv`
- Activate the virtual environment:
- On Windows: `venv\Scripts\activate`
- On Unix or MacOS: `source venv/bin/activate`
- Install dependencies: `pip install -r requirements.txt`
- Set up your `.env` file with necessary credentials
- Navigate to the frontend directory: `cd frontend`
- Install Gradio: `pip install gradio`
- Start the backend server: `cd backend && python run.py`
- In a new terminal, start the frontend: `cd frontend && python app.py`
" > README.md