ArielShadrac commited on
Commit
07ba500
·
1 Parent(s): 81917a3

Add smolagents GAIA agent

Browse files
Files changed (2) hide show
  1. app.py +206 -114
  2. requirements.txt +4 -1
app.py CHANGED
@@ -1,196 +1,288 @@
1
  import os
2
  import gradio as gr
3
  import requests
4
- import inspect
5
  import pandas as pd
6
 
7
- # (Keep Constants as is)
 
 
 
 
 
 
8
  # --- Constants ---
9
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
10
 
11
- # --- Basic Agent Definition ---
12
- # ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
13
- class BasicAgent:
14
- def __init__(self):
15
- print("BasicAgent initialized.")
16
- def __call__(self, question: str) -> str:
17
- print(f"Agent received question (first 50 chars): {question[:50]}...")
18
- fixed_answer = "This is a default answer."
19
- print(f"Agent returning fixed answer: {fixed_answer}")
20
- return fixed_answer
21
-
22
- def run_and_submit_all( profile: gr.OAuthProfile | None):
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  """
24
- Fetches all questions, runs the BasicAgent on them, submits all answers,
25
- and displays the results.
26
  """
27
- # --- Determine HF Space Runtime URL and Repo URL ---
28
- space_id = os.getenv("SPACE_ID") # Get the SPACE_ID for sending link to the code
 
 
29
 
30
- if profile:
31
- username= f"{profile.username}"
32
- print(f"User logged in: {username}")
33
- else:
34
- print("User not logged in.")
35
- return "Please Login to Hugging Face with the button.", None
36
 
37
  api_url = DEFAULT_API_URL
38
  questions_url = f"{api_url}/questions"
39
  submit_url = f"{api_url}/submit"
40
 
41
- # 1. Instantiate Agent ( modify this part to create your agent)
42
  try:
43
- agent = BasicAgent()
44
  except Exception as e:
45
- print(f"Error instantiating agent: {e}")
46
  return f"Error initializing agent: {e}", None
47
- # In the case of an app running as a hugging Face space, this link points toward your codebase ( usefull for others so please keep it public)
48
  agent_code = f"https://huggingface.co/spaces/{space_id}/tree/main"
49
- print(agent_code)
50
 
51
- # 2. Fetch Questions
52
  print(f"Fetching questions from: {questions_url}")
53
  try:
54
  response = requests.get(questions_url, timeout=15)
55
  response.raise_for_status()
56
  questions_data = response.json()
57
  if not questions_data:
58
- print("Fetched questions list is empty.")
59
- return "Fetched questions list is empty or invalid format.", None
60
  print(f"Fetched {len(questions_data)} questions.")
61
- except requests.exceptions.RequestException as e:
62
- print(f"Error fetching questions: {e}")
63
- return f"Error fetching questions: {e}", None
64
- except requests.exceptions.JSONDecodeError as e:
65
- print(f"Error decoding JSON response from questions endpoint: {e}")
66
- print(f"Response text: {response.text[:500]}")
67
- return f"Error decoding server response for questions: {e}", None
68
  except Exception as e:
69
- print(f"An unexpected error occurred fetching questions: {e}")
70
- return f"An unexpected error occurred fetching questions: {e}", None
71
 
72
- # 3. Run your Agent
73
  results_log = []
74
  answers_payload = []
75
  print(f"Running agent on {len(questions_data)} questions...")
 
76
  for item in questions_data:
77
  task_id = item.get("task_id")
78
  question_text = item.get("question")
 
79
  if not task_id or question_text is None:
80
  print(f"Skipping item with missing task_id or question: {item}")
81
  continue
 
 
 
 
82
  try:
83
- submitted_answer = agent(question_text)
84
- answers_payload.append({"task_id": task_id, "submitted_answer": submitted_answer})
85
- results_log.append({"Task ID": task_id, "Question": question_text, "Submitted Answer": submitted_answer})
86
  except Exception as e:
87
- print(f"Error running agent on task {task_id}: {e}")
88
- results_log.append({"Task ID": task_id, "Question": question_text, "Submitted Answer": f"AGENT ERROR: {e}"})
 
 
 
 
 
 
 
89
 
90
  if not answers_payload:
91
- print("Agent did not produce any answers to submit.")
92
- return "Agent did not produce any answers to submit.", pd.DataFrame(results_log)
93
 
94
- # 4. Prepare Submission
95
- submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload}
96
- status_update = f"Agent finished. Submitting {len(answers_payload)} answers for user '{username}'..."
97
- print(status_update)
 
 
98
 
99
- # 5. Submit
100
- print(f"Submitting {len(answers_payload)} answers to: {submit_url}")
101
  try:
102
- response = requests.post(submit_url, json=submission_data, timeout=60)
103
  response.raise_for_status()
104
  result_data = response.json()
105
  final_status = (
106
  f"Submission Successful!\n"
107
  f"User: {result_data.get('username')}\n"
108
- f"Overall Score: {result_data.get('score', 'N/A')}% "
109
  f"({result_data.get('correct_count', '?')}/{result_data.get('total_attempted', '?')} correct)\n"
110
  f"Message: {result_data.get('message', 'No message received.')}"
111
  )
112
  print("Submission successful.")
113
- results_df = pd.DataFrame(results_log)
114
- return final_status, results_df
115
  except requests.exceptions.HTTPError as e:
116
- error_detail = f"Server responded with status {e.response.status_code}."
117
  try:
118
- error_json = e.response.json()
119
- error_detail += f" Detail: {error_json.get('detail', e.response.text)}"
120
- except requests.exceptions.JSONDecodeError:
121
- error_detail += f" Response: {e.response.text[:500]}"
122
- status_message = f"Submission Failed: {error_detail}"
123
- print(status_message)
124
- results_df = pd.DataFrame(results_log)
125
- return status_message, results_df
126
- except requests.exceptions.Timeout:
127
- status_message = "Submission Failed: The request timed out."
128
- print(status_message)
129
- results_df = pd.DataFrame(results_log)
130
- return status_message, results_df
131
- except requests.exceptions.RequestException as e:
132
- status_message = f"Submission Failed: Network error - {e}"
133
- print(status_message)
134
- results_df = pd.DataFrame(results_log)
135
- return status_message, results_df
136
  except Exception as e:
137
- status_message = f"An unexpected error occurred during submission: {e}"
138
- print(status_message)
139
- results_df = pd.DataFrame(results_log)
140
- return status_message, results_df
141
 
142
 
143
- # --- Build Gradio Interface using Blocks ---
144
  with gr.Blocks() as demo:
145
- gr.Markdown("# Basic Agent Evaluation Runner")
146
  gr.Markdown(
147
  """
148
  **Instructions:**
 
 
 
149
 
150
- 1. Please clone this space, then modify the code to define your agent's logic, the tools, the necessary packages, etc ...
151
- 2. Log in to your Hugging Face account using the button below. This uses your HF username for submission.
152
- 3. Click 'Run Evaluation & Submit All Answers' to fetch questions, run your agent, submit answers, and see the score.
153
-
154
- ---
155
- **Disclaimers:**
156
- Once clicking on the "submit button, it can take quite some time ( this is the time for the agent to go through all the questions).
157
- This space provides a basic setup and is intentionally sub-optimal to encourage you to develop your own, more robust solution. For instance for the delay process of the submit button, a solution could be to cache the answers and submit in a seperate action or even to answer the questions in async.
158
  """
159
  )
160
 
161
  gr.LoginButton()
162
 
163
- run_button = gr.Button("Run Evaluation & Submit All Answers")
164
 
165
- status_output = gr.Textbox(label="Run Status / Submission Result", lines=5, interactive=False)
166
- # Removed max_rows=10 from DataFrame constructor
167
- results_table = gr.DataFrame(label="Questions and Agent Answers", wrap=True)
 
 
 
 
 
 
168
 
169
  run_button.click(
170
  fn=run_and_submit_all,
171
- outputs=[status_output, results_table]
172
  )
173
 
174
  if __name__ == "__main__":
175
- print("\n" + "-"*30 + " App Starting " + "-"*30)
176
- # Check for SPACE_HOST and SPACE_ID at startup for information
177
  space_host_startup = os.getenv("SPACE_HOST")
178
- space_id_startup = os.getenv("SPACE_ID") # Get SPACE_ID at startup
179
 
180
  if space_host_startup:
181
- print(f"SPACE_HOST found: {space_host_startup}")
182
- print(f" Runtime URL should be: https://{space_host_startup}.hf.space")
183
- else:
184
- print("ℹ️ SPACE_HOST environment variable not found (running locally?).")
185
-
186
- if space_id_startup: # Print repo URLs if SPACE_ID is found
187
- print(f"✅ SPACE_ID found: {space_id_startup}")
188
- print(f" Repo URL: https://huggingface.co/spaces/{space_id_startup}")
189
- print(f" Repo Tree URL: https://huggingface.co/spaces/{space_id_startup}/tree/main")
190
- else:
191
- print("ℹ️ SPACE_ID environment variable not found (running locally?). Repo URL cannot be determined.")
192
-
193
- print("-"*(60 + len(" App Starting ")) + "\n")
194
 
195
- print("Launching Gradio Interface for Basic Agent Evaluation...")
 
196
  demo.launch(debug=True, share=False)
 
1
  import os
2
  import gradio as gr
3
  import requests
 
4
  import pandas as pd
5
 
6
+ from smolagents import (
7
+ CodeAgent,
8
+ DuckDuckGoSearchTool,
9
+ InferenceClientModel,
10
+ tool,
11
+ )
12
+
13
  # --- Constants ---
14
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
15
 
16
+ # --- Custom Tools ---
17
+
18
+ @tool
19
+ def download_file_from_task(task_id: str) -> str:
20
+ """
21
+ Downloads a file associated with a GAIA task and returns its content as text.
22
+ Use this when a question references an attached file.
23
+
24
+ Args:
25
+ task_id: The task ID string of the GAIA question.
26
+ """
27
+ url = f"{DEFAULT_API_URL}/files/{task_id}"
28
+ try:
29
+ response = requests.get(url, timeout=30)
30
+ response.raise_for_status()
31
+ content_type = response.headers.get("content-type", "")
32
+
33
+ # Try to decode as text
34
+ try:
35
+ text = response.content.decode("utf-8")
36
+ # Truncate if too long
37
+ if len(text) > 8000:
38
+ text = text[:8000] + "\n[... truncated ...]"
39
+ return text
40
+ except UnicodeDecodeError:
41
+ return f"File downloaded but contains binary content (content-type: {content_type}). Size: {len(response.content)} bytes."
42
+
43
+ except requests.exceptions.RequestException as e:
44
+ return f"Error downloading file for task {task_id}: {e}"
45
+
46
+
47
+ @tool
48
+ def python_calculator(code: str) -> str:
49
+ """
50
+ Executes a Python expression or small snippet and returns the result.
51
+ Use for arithmetic, unit conversions, date calculations, or any numerical reasoning.
52
+ Only use safe, simple expressions. No imports needed for basic math.
53
+
54
+ Args:
55
+ code: A Python expression or short snippet to evaluate (e.g. '2 ** 10', 'round(3.14159 * 2, 4)')
56
+ """
57
+ import math
58
+ import datetime
59
+ allowed_globals = {
60
+ "__builtins__": {},
61
+ "math": math,
62
+ "datetime": datetime,
63
+ "abs": abs,
64
+ "round": round,
65
+ "int": int,
66
+ "float": float,
67
+ "str": str,
68
+ "len": len,
69
+ "sum": sum,
70
+ "min": min,
71
+ "max": max,
72
+ "sorted": sorted,
73
+ "range": range,
74
+ "list": list,
75
+ "dict": dict,
76
+ "set": set,
77
+ "zip": zip,
78
+ "enumerate": enumerate,
79
+ "print": print,
80
+ }
81
+ try:
82
+ result = eval(code, allowed_globals)
83
+ return str(result)
84
+ except Exception:
85
+ try:
86
+ exec_globals = allowed_globals.copy()
87
+ exec(code, exec_globals)
88
+ output = exec_globals.get("result", exec_globals.get("output", "Code executed but no 'result' variable found."))
89
+ return str(output)
90
+ except Exception as e:
91
+ return f"Error executing code: {e}"
92
+
93
+
94
+ # --- System Prompt ---
95
+ SYSTEM_PROMPT = """You are an expert research assistant tasked with answering questions from the GAIA benchmark.
96
+
97
+ CRITICAL RULES:
98
+ 1. Your final answer must be EXACT and CONCISE. No explanations, no sentences, no punctuation unless part of the answer.
99
+ 2. If the answer is a number, return ONLY the number (e.g. "42" not "The answer is 42").
100
+ 3. If the answer is a name, return ONLY the name (e.g. "Marie Curie" not "The answer is Marie Curie").
101
+ 4. If the answer is a list, return items separated by commas (e.g. "cat, dog, fish").
102
+ 5. If a question references a file or attachment, use the download_file_from_task tool with the task_id.
103
+ 6. Always search the web for factual questions before answering.
104
+ 7. Double-check calculations using the python_calculator tool.
105
+ 8. Never include "FINAL ANSWER:" in your response.
106
+ 9. Match the exact format requested in the question (abbreviation, full name, number, etc.).
107
+ """
108
+
109
+
110
+ # --- Agent Factory ---
111
+ def build_agent():
112
+ model = InferenceClientModel(
113
+ model_id="Qwen/Qwen2.5-72B-Instruct",
114
+ max_tokens=2048,
115
+ temperature=0.1,
116
+ )
117
+
118
+ agent = CodeAgent(
119
+ model=model,
120
+ tools=[
121
+ DuckDuckGoSearchTool(),
122
+ download_file_from_task,
123
+ python_calculator,
124
+ ],
125
+ max_steps=8,
126
+ verbosity_level=1,
127
+ additional_authorized_imports=["math", "datetime", "re", "json", "csv", "io"],
128
+ )
129
+
130
+ # Inject system prompt into agent
131
+ agent.system_prompt = SYSTEM_PROMPT + "\n\n" + agent.system_prompt
132
+
133
+ return agent
134
+
135
+
136
+ # --- Main Runner ---
137
+ def run_and_submit_all(profile: gr.OAuthProfile | None):
138
  """
139
+ Fetches all questions, runs the agent on them, submits answers, and displays results.
 
140
  """
141
+ space_id = os.getenv("SPACE_ID")
142
+
143
+ if not profile:
144
+ return "Please login to Hugging Face first.", None
145
 
146
+ username = profile.username
147
+ print(f"User logged in: {username}")
 
 
 
 
148
 
149
  api_url = DEFAULT_API_URL
150
  questions_url = f"{api_url}/questions"
151
  submit_url = f"{api_url}/submit"
152
 
153
+ # 1. Build agent
154
  try:
155
+ agent = build_agent()
156
  except Exception as e:
 
157
  return f"Error initializing agent: {e}", None
158
+
159
  agent_code = f"https://huggingface.co/spaces/{space_id}/tree/main"
160
+ print(f"Agent code link: {agent_code}")
161
 
162
+ # 2. Fetch questions
163
  print(f"Fetching questions from: {questions_url}")
164
  try:
165
  response = requests.get(questions_url, timeout=15)
166
  response.raise_for_status()
167
  questions_data = response.json()
168
  if not questions_data:
169
+ return "Fetched questions list is empty.", None
 
170
  print(f"Fetched {len(questions_data)} questions.")
 
 
 
 
 
 
 
171
  except Exception as e:
172
+ return f"Error fetching questions: {e}", None
 
173
 
174
+ # 3. Run agent on each question
175
  results_log = []
176
  answers_payload = []
177
  print(f"Running agent on {len(questions_data)} questions...")
178
+
179
  for item in questions_data:
180
  task_id = item.get("task_id")
181
  question_text = item.get("question")
182
+
183
  if not task_id or question_text is None:
184
  print(f"Skipping item with missing task_id or question: {item}")
185
  continue
186
+
187
+ # Inject task_id into question so agent can use download_file_from_task
188
+ augmented_question = f"[task_id: {task_id}]\n\n{question_text}"
189
+
190
  try:
191
+ submitted_answer = agent.run(augmented_question)
192
+ submitted_answer = str(submitted_answer).strip()
193
+ print(f"Task {task_id}: {submitted_answer[:80]}")
194
  except Exception as e:
195
+ submitted_answer = f"AGENT ERROR: {e}"
196
+ print(f"Error on task {task_id}: {e}")
197
+
198
+ answers_payload.append({"task_id": task_id, "submitted_answer": submitted_answer})
199
+ results_log.append({
200
+ "Task ID": task_id,
201
+ "Question": question_text[:120],
202
+ "Submitted Answer": submitted_answer,
203
+ })
204
 
205
  if not answers_payload:
206
+ return "Agent produced no answers.", pd.DataFrame(results_log)
 
207
 
208
+ # 4. Submit
209
+ submission_data = {
210
+ "username": username.strip(),
211
+ "agent_code": agent_code,
212
+ "answers": answers_payload,
213
+ }
214
 
215
+ print(f"Submitting {len(answers_payload)} answers...")
 
216
  try:
217
+ response = requests.post(submit_url, json=submission_data, timeout=120)
218
  response.raise_for_status()
219
  result_data = response.json()
220
  final_status = (
221
  f"Submission Successful!\n"
222
  f"User: {result_data.get('username')}\n"
223
+ f"Score: {result_data.get('score', 'N/A')}% "
224
  f"({result_data.get('correct_count', '?')}/{result_data.get('total_attempted', '?')} correct)\n"
225
  f"Message: {result_data.get('message', 'No message received.')}"
226
  )
227
  print("Submission successful.")
228
+ return final_status, pd.DataFrame(results_log)
 
229
  except requests.exceptions.HTTPError as e:
 
230
  try:
231
+ detail = e.response.json().get("detail", e.response.text)
232
+ except Exception:
233
+ detail = e.response.text[:500]
234
+ return f"Submission Failed: {detail}", pd.DataFrame(results_log)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  except Exception as e:
236
+ return f"Submission Failed: {e}", pd.DataFrame(results_log)
 
 
 
237
 
238
 
239
+ # --- Gradio Interface ---
240
  with gr.Blocks() as demo:
241
+ gr.Markdown("# GAIA Agent - Unit 4 Final Assignment")
242
  gr.Markdown(
243
  """
244
  **Instructions:**
245
+ 1. Log in with your Hugging Face account below.
246
+ 2. Click **Run Evaluation & Submit** to start the agent on all 20 GAIA questions.
247
+ 3. Results and score will appear below.
248
 
249
+ The agent uses web search, file downloading, and Python calculations to answer questions.
250
+ Target: >= 30% to earn the course certificate.
 
 
 
 
 
 
251
  """
252
  )
253
 
254
  gr.LoginButton()
255
 
256
+ run_button = gr.Button("Run Evaluation & Submit All Answers", variant="primary")
257
 
258
+ status_output = gr.Textbox(
259
+ label="Submission Result",
260
+ lines=6,
261
+ interactive=False,
262
+ )
263
+ results_table = gr.DataFrame(
264
+ label="Questions and Agent Answers",
265
+ wrap=True,
266
+ )
267
 
268
  run_button.click(
269
  fn=run_and_submit_all,
270
+ outputs=[status_output, results_table],
271
  )
272
 
273
  if __name__ == "__main__":
274
+ print("\n" + "-" * 30 + " App Starting " + "-" * 30)
275
+
276
  space_host_startup = os.getenv("SPACE_HOST")
277
+ space_id_startup = os.getenv("SPACE_ID")
278
 
279
  if space_host_startup:
280
+ print(f"SPACE_HOST: {space_host_startup}")
281
+ if space_id_startup:
282
+ print(f"SPACE_ID: {space_id_startup}")
283
+ print(f"Repo URL: https://huggingface.co/spaces/{space_id_startup}")
284
+ print(f"Repo Tree URL: https://huggingface.co/spaces/{space_id_startup}/tree/main")
 
 
 
 
 
 
 
 
285
 
286
+ print("-" * 74 + "\n")
287
+ print("Launching Gradio Interface...")
288
  demo.launch(debug=True, share=False)
requirements.txt CHANGED
@@ -1,2 +1,5 @@
 
1
  gradio
2
- requests
 
 
 
1
+ smolagents[toolkit]
2
  gradio
3
+ requests
4
+ pandas
5
+ duckduckgo-search