| import os |
| import gradio as gr |
| import requests |
| import pandas as pd |
| import traceback |
| import time |
|
|
| |
| from smolagents import CodeAgent, LiteLLMModel, tool |
| from smolagents import DuckDuckGoSearchTool |
| from unstructured.partition.auto import partition |
|
|
| |
| DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space" |
|
|
| |
| @tool |
| def file_reader(file_path: str) -> str: |
| """Reads the content of a file and returns its text content. |
| |
| This tool supports various file types like PDF, TXT, CSV, etc., from either |
| a local path or a web URL. |
| |
| Args: |
| file_path (str): The local path or web URL of the file to be read. |
| """ |
| try: |
| if file_path.startswith("http://") or file_path.startswith("https://"): |
| response = requests.get(file_path, timeout=20) |
| response.raise_for_status() |
| with open("temp_file", "wb") as f: |
| f.write(response.content) |
| elements = partition("temp_file") |
| os.remove("temp_file") |
| else: |
| elements = partition(file_path) |
| return "\n\n".join([str(el) for el in elements]) |
| except Exception as e: |
| return f"Error reading or processing file '{file_path}': {e}" |
|
|
| |
| class GaiaSmolAgent: |
| def __init__(self): |
| |
| print("Initializing GaiaSmolAgent with a free Open-Source LLM via Groq...") |
| api_key = os.getenv("GROQ_API_KEY") |
| if not api_key: |
| raise ValueError("API key 'GROQ_API_KEY' not found in environment secrets.") |
|
|
| |
|
|
|
|
| self.planner_model = LiteLLMModel( |
| |
| model_id="groq/llama3-8b-8192", |
| api_key=api_key, |
| temperature=0.0, |
| ) |
|
|
| |
| self.executor_agent = CodeAgent( |
| model=self.planner_model, |
| tools=[file_reader, DuckDuckGoSearchTool()], |
| add_base_tools=True, |
| ) |
| print("GaiaSmolAgent initialized successfully.") |
|
|
| def _generate_script(self, question: str) -> str: |
| """Generates a self-contained Python script to answer the question.""" |
| print(f"Generating script for question: {question[:100]}...") |
| |
| prompt = f""" |
| You are an expert Python programmer. Your task is to write a single, self-contained Python script to answer the user's question. |
| |
| You have access to the following functions which are pre-imported and ready to use: |
| - `duck_duck_go_search(query: str) -> str`: Searches the web and returns a string with the results. |
| - `file_reader(file_path: str) -> str`: Reads a file and returns its contents as a string. |
| |
| CRITICAL INSTRUCTIONS: |
| 1. Your output must be ONLY the Python code for the script. Do not add any explanation or markdown formatting like ```python. |
| 2. The script MUST end with a call to a function `final_answer(answer: str)`. |
| 3. The `answer` passed to `final_answer` must be a single, concise string. |
| 4. All logic, including processing the string outputs from the tools, must be included in this single script. State is preserved within the script. |
| |
| Question: "{question}" |
| |
| Example for "What is the capital of France?": |
| search_result = duck_duck_go_search("capital of France") |
| # In a real scenario, you would parse this string to find the answer. |
| # For this example, we'll just summarize the string. |
| answer = "Based on the search, the capital is likely Paris." # Replace with actual logic |
| final_answer(answer) |
| |
| Now, write the Python script to answer the user's question. |
| """ |
| messages = [{"role": "user", "content": [{"type": "text", "text": prompt}]}] |
| response_object = self.planner_model.generate(messages) |
| |
| |
| |
| response_content = response_object.content |
| |
| if "```python" in response_content: |
| response_content = response_content.split("```python")[1].split("```")[0].strip() |
| |
| print(f"--- Generated Script ---\n{response_content}\n------------------------") |
| return response_content |
|
|
| def __call__(self, question: str) -> str: |
| """Generates and executes a single script to answer the question.""" |
| print(f"Agent received question: {question[:100]}...") |
| |
| try: |
| script_to_execute = self._generate_script(question) |
| final_answer = self.executor_agent.run(script_to_execute) |
|
|
| except Exception as e: |
| print(f"FATAL AGENT ERROR: An exception occurred during agent execution: {e}") |
| print(traceback.format_exc()) |
| return f"FATAL AGENT ERROR: {e}" |
|
|
| print(f"Agent returning final answer: {final_answer}") |
| return str(final_answer) |
|
|
| |
| def run_and_submit_all(profile: gr.OAuthProfile | None): |
| space_id = os.getenv("SPACE_ID") |
| if not profile: |
| return "Please Login to Hugging Face with the button.", None |
| |
| username = profile.username |
| print(f"User logged in: {username}") |
|
|
| api_url = DEFAULT_API_URL |
| questions_url = f"{api_url}/questions" |
| submit_url = f"{api_url}/submit" |
|
|
| try: |
| agent = GaiaSmolAgent() |
| except Exception as e: |
| return f"Error initializing agent: {e}", None |
|
|
| agent_code = f"[https://huggingface.co/spaces/](https://huggingface.co/spaces/){space_id}/tree/main" |
|
|
| try: |
| response = requests.get(questions_url, timeout=15) |
| response.raise_for_status() |
| questions_data = response.json() |
| except Exception as e: |
| return f"Error fetching questions: {e}", None |
|
|
| results_log = [] |
| answers_payload = [] |
| for item in questions_data: |
| task_id = item.get("task_id") |
| question_text = item.get("question") |
| file_path = item.get("file") |
| if file_path: |
| question_text += f"\n\nRelevant file is available at: {file_path}" |
| |
| if not task_id or question_text is None: |
| continue |
| |
| |
| try: |
| agent_result = agent(question_text) |
| |
| answers_payload.append({ |
| "task_id": task_id, |
| "model_answer": agent_result["model_answer"], |
| "reasoning_trace": agent_result["reasoning_trace"] |
| }) |
| |
| results_log.append({ |
| "Task ID": task_id, |
| "Question": question_text, |
| "Submitted Answer": agent_result["model_answer"], |
| "Reasoning Trace": agent_result["reasoning_trace"] |
| }) |
| except Exception as e: |
| error_message = f"AGENT ERROR: {e}" |
| print(f"Error running agent on task {task_id}: {e}") |
| print(traceback.format_exc()) |
| results_log.append({"Task ID": task_id, "Question": question_text, "Submitted Answer": error_message, "Reasoning Trace": ""}) |
| |
| print("Pausing for 5 seconds to respect API rate limits...") |
| time.sleep(5) |
|
|
| if not answers_payload: |
| return "Agent did not produce any answers to submit.", pd.DataFrame(results_log) |
|
|
| |
| submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload} |
| |
| try: |
| response = requests.post(submit_url, json=submission_data, timeout=60) |
| response.raise_for_status() |
| result_data = response.json() |
| final_status = ( |
| f"Submission Successful!\n" |
| f"User: {result_data.get('username')}\n" |
| f"Overall Score: {result_data.get('score', 'N/A')}% " |
| f"({result_data.get('correct_count', '?')}/{result_data.get('total_attempted', '?')} correct)\n" |
| f"Message: {result_data.get('message', 'No message received.')}" |
| ) |
| return final_status, pd.DataFrame(results_log) |
| except Exception as e: |
| return f"Submission Failed: {e}", pd.DataFrame(results_log) |
|
|
| |
| with gr.Blocks() as demo: |
| gr.Markdown("# GAIA Agent Evaluation Runner (smol-agent)") |
| gr.Markdown( |
| """ |
| **Instructions:** |
| 1. Ensure you have added your **Groq API key** (as `GROQ_API_KEY`) in the Space's secrets. |
| 2. Log in to your Hugging Face account using the button below. |
| 3. Click 'Run Evaluation & Submit All Answers' to run your agent and see the score. |
| """ |
| ) |
| gr.LoginButton() |
| run_button = gr.Button("Run Evaluation & Submit All Answers") |
| status_output = gr.Textbox(label="Run Status / Submission Result", lines=5, interactive=False) |
| results_table = gr.DataFrame(label="Questions and Agent Answers", wrap=True) |
| |
| run_button.click( |
| fn=run_and_submit_all, |
| outputs=[status_output, results_table] |
| ) |
|
|
| if __name__ == "__main__": |
| print("Launching Gradio Interface for GAIA Agent Evaluation...") |
| demo.launch(debug=True, share=False) |
|
|