--- title: Unit 4 / GAIA - Template Final Assignment emoji: 🕵🏻‍♂️ colorFrom: indigo colorTo: indigo sdk: gradio sdk_version: 5.25.2 app_file: app.py pinned: false hf_oauth: true # optional, default duration is 8 hours/480 minutes. Max duration is 30 days/43200 minutes. hf_oauth_expiration_minutes: 480 --- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference ## Running the Project Locally To run this project on your local machine, follow these steps: ### 1. Clone the Repository ```bash git clone cd Unit4-GAIA ``` ### 2. Set Up a Virtual Environment ```bash # Create a virtual environment python -m venv venv # Activate the virtual environment # On macOS/Linux: source venv/bin/activate # On Windows: # venv\Scripts\activate ``` ### 3. Install Dependencies ```bash pip install -r requirements.txt ``` ### 4. Run the Application ```bash python app.py ``` This will start the Gradio interface locally. You should see a URL (typically http://127.0.0.1:7860) in your terminal where you can access the application. ### 5. Deactivate the Virtual Environment When you're done working on the project, you can deactivate the virtual environment: ```bash deactivate ``` ### Note - You'll need to log in with your Hugging Face account to use the evaluation functionality - The agent uses the Groq provider, so you'll need appropriate API access set up