zaradana commited on
Commit
54517af
·
verified ·
1 Parent(s): d1479d0

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +136 -38
app.py CHANGED
@@ -1,34 +1,100 @@
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.")
@@ -40,7 +106,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
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
@@ -55,16 +121,16 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
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
@@ -76,23 +142,52 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
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
 
@@ -162,20 +257,19 @@ with gr.Blocks() as demo:
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}")
@@ -183,14 +277,18 @@ if __name__ == "__main__":
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
+ from utils import check_asnwer_format
6
+ import json
7
+ from smolagents import HfApiModel, CodeAgent, VisitWebpageTool
8
+ from tools import (
9
+ GetFileTool,
10
+ transcribe_audio,
11
+ image_question_answering,
12
+ )
13
+ from dotenv import load_dotenv
14
+
15
+ load_dotenv()
16
 
17
  # (Keep Constants as is)
18
  # --- Constants ---
19
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
20
+ HF_TOKEN = os.getenv("HF_TOKEN")
21
+
22
+
23
+ def build_prompt(question: str, file_name: str):
24
+ prompt = """You are a general AI assistant. I will ask you a question.
25
+ Report your thoughts, and finish your answer with the following template: FINAL ANSWER: [YOUR FINAL ANSWER].
26
+ YOUR FINAL ANSWER should be a number OR as few words as possible OR a comma separated list of numbers and/or strings.
27
+ If you are asked for a number, don't use comma to write your number neither use units such as $ or percent sign unless specified otherwise.
28
+ If you are asked for a string, don't use articles, neither abbreviations (e.g. for cities), and write the digits in plain text unless specified otherwise.
29
+ If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string.
30
+ Here is the question: {question}
31
+ """
32
+ if file_name != "":
33
+ prompt += "\n\nHere is the file name needed to answer the question: {file_name}"
34
+ return prompt.format(question=question, file_name=file_name)
35
+
36
 
37
+
38
+ # --- Awesome Agent Definition ---
39
  # ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
40
+ class AwesomeAgent:
41
  def __init__(self):
42
+ model = HfApiModel(
43
+ model_id="meta-llama/Llama-3.3-70B-Instruct",
44
+ provider="hf-inference",
45
+ token=HF_TOKEN,
46
+ seed = 24,
47
+ )
48
+ self.agent = CodeAgent(
49
+ model=model,
50
+ tools=[
51
+ GetFileTool(),
52
+ VisitWebpageTool(),
53
+ transcribe_audio,
54
+ image_question_answering,
55
+ ],
56
+ additional_authorized_imports=[
57
+ "datetime",
58
+ "re",
59
+ "json",
60
+ "pandas",
61
+ "numpy",
62
+ "itertools",
63
+ "unicodedata",
64
+ "stat",
65
+ "queue",
66
+ "random",
67
+ "math",
68
+ "collections",
69
+ "statistics",
70
+ "time",
71
+ "requests"
72
+ ],
73
+ planning_interval=3,
74
+ add_base_tools=True,
75
+ final_answer_checks=[check_asnwer_format],
76
+ )
77
+ print("AwesomeAgent initialized.")
78
+
79
+ def __call__(self, question: str, file_name: str) -> str:
80
+ prompt = build_prompt(question, file_name)
81
+ response = self.agent.run(prompt)
82
+ print(response)
83
+ if isinstance(response, str) and "FINAL ANSWER " in response:
84
+ return response[14:]
85
+ return response
86
+
87
+
88
+ def run_and_submit_all(profile: gr.OAuthProfile | None):
89
  """
90
  Fetches all questions, runs the BasicAgent on them, submits all answers,
91
  and displays the results.
92
  """
93
  # --- Determine HF Space Runtime URL and Repo URL ---
94
+ space_id = os.getenv("SPACE_ID") # Get the SPACE_ID for sending link to the code
95
 
96
  if profile:
97
+ username = f"{profile.username}"
98
  print(f"User logged in: {username}")
99
  else:
100
  print("User not logged in.")
 
106
 
107
  # 1. Instantiate Agent ( modify this part to create your agent)
108
  try:
109
+ agent = AwesomeAgent()
110
  except Exception as e:
111
  print(f"Error instantiating agent: {e}")
112
  return f"Error initializing agent: {e}", None
 
121
  response.raise_for_status()
122
  questions_data = response.json()
123
  if not questions_data:
124
+ print("Fetched questions list is empty.")
125
+ return "Fetched questions list is empty or invalid format.", None
126
  print(f"Fetched {len(questions_data)} questions.")
127
  except requests.exceptions.RequestException as e:
128
  print(f"Error fetching questions: {e}")
129
  return f"Error fetching questions: {e}", None
130
  except requests.exceptions.JSONDecodeError as e:
131
+ print(f"Error decoding JSON response from questions endpoint: {e}")
132
+ print(f"Response text: {response.text[:500]}")
133
+ return f"Error decoding server response for questions: {e}", None
134
  except Exception as e:
135
  print(f"An unexpected error occurred fetching questions: {e}")
136
  return f"An unexpected error occurred fetching questions: {e}", None
 
142
  for item in questions_data:
143
  task_id = item.get("task_id")
144
  question_text = item.get("question")
145
+ file_name = item.get("file_name")
146
  if not task_id or question_text is None:
147
  print(f"Skipping item with missing task_id or question: {item}")
148
  continue
149
  try:
150
+ submitted_answer = agent(question_text, file_name)
151
+ answers_payload.append(
152
+ {"task_id": task_id, "submitted_answer": submitted_answer}
153
+ )
154
+ results_log.append(
155
+ {
156
+ "Task ID": task_id,
157
+ "Question": question_text,
158
+ "Submitted Answer": submitted_answer,
159
+ }
160
+ )
161
  except Exception as e:
162
+ import traceback
163
+
164
+ exec_error = traceback.format_exc()
165
+ print(f"Error running agent on task {task_id}: {e}")
166
+ print(f"Error traceback: {exec_error}")
167
+ results_log.append(
168
+ {
169
+ "Task ID": task_id,
170
+ "Question": question_text,
171
+ "Submitted Answer": f"AGENT ERROR: {e}",
172
+ }
173
+ )
174
+ with open("../data/results_log.json", "w") as f:
175
+ json.dump(results_log, f)
176
 
177
  if not answers_payload:
178
  print("Agent did not produce any answers to submit.")
179
  return "Agent did not produce any answers to submit.", pd.DataFrame(results_log)
180
 
181
+ # 4. Prepare Submission
182
+ submission_data = {
183
+ "username": username.strip(),
184
+ "agent_code": agent_code,
185
+ "answers": answers_payload,
186
+ }
187
+
188
+ # ZD: Remove this line before submitting
189
+ # return "Submission data saved to submission_data.json", pd.DataFrame(results_log)
190
+
191
  status_update = f"Agent finished. Submitting {len(answers_payload)} answers for user '{username}'..."
192
  print(status_update)
193
 
 
257
 
258
  run_button = gr.Button("Run Evaluation & Submit All Answers")
259
 
260
+ status_output = gr.Textbox(
261
+ label="Run Status / Submission Result", lines=5, interactive=False
262
+ )
263
  # Removed max_rows=10 from DataFrame constructor
264
  results_table = gr.DataFrame(label="Questions and Agent Answers", wrap=True)
265
 
266
+ run_button.click(fn=run_and_submit_all, outputs=[status_output, results_table])
 
 
 
267
 
268
  if __name__ == "__main__":
269
+ print("\n" + "-" * 30 + " App Starting " + "-" * 30)
270
  # Check for SPACE_HOST and SPACE_ID at startup for information
271
  space_host_startup = os.getenv("SPACE_HOST")
272
+ space_id_startup = os.getenv("SPACE_ID") # Get SPACE_ID at startup
273
 
274
  if space_host_startup:
275
  print(f"✅ SPACE_HOST found: {space_host_startup}")
 
277
  else:
278
  print("ℹ️ SPACE_HOST environment variable not found (running locally?).")
279
 
280
+ if space_id_startup: # Print repo URLs if SPACE_ID is found
281
  print(f"✅ SPACE_ID found: {space_id_startup}")
282
  print(f" Repo URL: https://huggingface.co/spaces/{space_id_startup}")
283
+ print(
284
+ f" Repo Tree URL: https://huggingface.co/spaces/{space_id_startup}/tree/main"
285
+ )
286
  else:
287
+ print(
288
+ "ℹ️ SPACE_ID environment variable not found (running locally?). Repo URL cannot be determined."
289
+ )
290
 
291
+ print("-" * (60 + len(" App Starting ")) + "\n")
292
 
293
  print("Launching Gradio Interface for Basic Agent Evaluation...")
294
+ demo.launch(debug=True, share=False)