Annessha18 commited on
Commit
f2c98c5
·
verified ·
1 Parent(s): c58691e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +177 -121
app.py CHANGED
@@ -2,147 +2,203 @@ import os
2
  import gradio as gr
3
  import requests
4
  import pandas as pd
 
5
 
6
- # -----------------------------
7
- # Constants
8
- # -----------------------------
 
 
 
 
9
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
 
10
 
11
- # -----------------------------
12
- # AGENT LOGIC
13
- # -----------------------------
14
- class BasicAgent:
15
- def __init__(self):
16
- print("BasicAgent initialized")
17
-
18
- def __call__(self, question: str) -> str:
19
- q = question.lower()
20
-
21
- # Vegetables
22
- if "vegetables" in q and "grocery" in q:
23
- vegetables = [
24
- "bell pepper",
25
- "broccoli",
26
- "celery",
27
- "fresh basil",
28
- "green beans",
29
- "lettuce",
30
- "sweet potatoes",
31
- "zucchini"
32
- ]
33
- return ", ".join(sorted(vegetables))
34
-
35
- # Fruits
36
- if "fruits" in q and "grocery" in q:
37
- fruits = ["plums", "acorns", "peanuts"]
38
- return ", ".join(sorted(fruits))
39
-
40
- # Mercedes Sosa albums
41
- if "mercedes sosa" in q and "studio albums" in q:
42
- return "3"
43
-
44
- # Bird species in video
45
- if "bird species" in q or "number of bird species" in q:
46
- return "4"
47
-
48
- # Opposite word
49
- if "opposite" in q:
50
- if "left" in q:
51
- return "right"
52
- if "up" in q:
53
- return "down"
54
- if "hot" in q:
55
- return "cold"
56
-
57
- # Simple arithmetic or counts
58
- if "sum of" in q:
59
- # Example: "sum of 2 and 3"
60
- import re
61
- numbers = list(map(int, re.findall(r'\d+', q)))
62
- return str(sum(numbers))
63
-
64
- # Chess fallback
65
- if "chess" in q:
66
- return "Qh5"
67
-
68
- # Reverse / pattern questions
69
- if "reverse" in q or "backwards" in q:
70
- return q[::-1]
71
-
72
- # Default fallback
73
- return "I don't know"
74
-
75
- # -----------------------------
76
- # GAIA RUN + SUBMIT
77
- # -----------------------------
78
- def run_and_submit_all(profile: gr.OAuthProfile | None):
79
- if not profile:
80
- return "Please login to Hugging Face", None
81
-
82
- username = profile.username
83
- space_id = os.getenv("SPACE_ID")
84
- agent_code = f"https://huggingface.co/spaces/{space_id}/tree/main"
85
 
86
  api_url = DEFAULT_API_URL
87
  questions_url = f"{api_url}/questions"
88
  submit_url = f"{api_url}/submit"
89
 
90
- agent = BasicAgent()
 
 
 
 
 
 
 
 
 
 
 
91
 
 
 
92
  try:
93
  response = requests.get(questions_url, timeout=15)
94
- questions = response.json()
95
- except Exception as e:
 
 
 
 
 
 
 
96
  return f"Error fetching questions: {e}", None
 
 
 
 
 
 
 
 
 
 
 
97
 
98
- answers = []
99
- log = []
100
-
101
- for q in questions:
102
- answer = agent(q.get("question", ""))
103
- answers.append({
104
- "task_id": q.get("task_id"),
105
- "submitted_answer": answer
106
- })
107
- log.append({
108
- "Task ID": q.get("task_id"),
109
- "Question": q.get("question"),
110
- "Answer": answer
111
- })
112
-
113
- payload = {
114
- "username": username,
115
- "agent_code": agent_code,
116
- "answers": answers
117
- }
118
 
 
 
 
 
 
 
 
119
  try:
120
- response = requests.post(submit_url, json=payload, timeout=30)
121
- result = response.json()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  except Exception as e:
123
- return f"Submission failed: {e}", pd.DataFrame(log)
124
-
125
- status = (
126
- f"✅ Submission Successful!\n"
127
- f"User: {result.get('username')}\n"
128
- f"Score: {result.get('score')}%\n"
129
- f"Correct: {result.get('correct_count')}/{result.get('total_attempted')}\n"
130
- f"Message: {result.get('message')}"
131
- )
132
 
133
- return status, pd.DataFrame(log)
134
 
135
- # -----------------------------
136
- # GRADIO UI
137
- # -----------------------------
138
  with gr.Blocks() as demo:
139
- gr.Markdown("# 🤖 GAIA Level 1 Agent")
 
 
 
 
 
 
 
 
 
140
  gr.LoginButton()
141
 
142
- run_btn = gr.Button("Run Evaluation & Submit All Answers")
143
- status_out = gr.Textbox(label="Submission Result", lines=5)
144
- table_out = gr.Dataframe(label="Questions and Answers")
145
 
146
- run_btn.click(run_and_submit_all, outputs=[status_out, table_out])
 
 
 
 
 
 
 
147
 
148
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  import gradio as gr
3
  import requests
4
  import pandas as pd
5
+ from typing import Dict, List
6
 
7
+ # custom imports
8
+ from agents import Agent
9
+ from tool import get_tools
10
+ from model import get_model
11
+
12
+ # (Keep Constants as is)
13
+ # --- Constants ---
14
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
15
+ MODEL_ID = "gemini/gemini-2.5-flash-preview-04-17"
16
 
17
+ # --- Async Question Processing ---
18
+ async def process_question(agent, question: str, task_id: str) -> Dict:
19
+ """Process a single question and return both answer AND full log entry"""
20
+ try:
21
+ answer = agent(question)
22
+ return {
23
+ "submission": {"task_id": task_id, "submitted_answer": answer},
24
+ "log": {"Task ID": task_id, "Question": question, "Submitted Answer": answer}
25
+ }
26
+ except Exception as e:
27
+ error_msg = f"ERROR: {str(e)}"
28
+ return {
29
+ "submission": {"task_id": task_id, "submitted_answer": error_msg},
30
+ "log": {"Task ID": task_id, "Question": question, "Submitted Answer": error_msg}
31
+ }
32
+
33
+ async def run_questions_async(agent, questions_data: List[Dict]) -> tuple:
34
+ """Process questions sequentially instead of in batch"""
35
+ submissions = []
36
+ logs = []
37
+
38
+ for q in questions_data:
39
+ result = await process_question(agent, q["question"], q["task_id"])
40
+ submissions.append(result["submission"])
41
+ logs.append(result["log"])
42
+
43
+ return submissions, logs
44
+
45
+
46
+ async def run_and_submit_all( profile: gr.OAuthProfile | None):
47
+ """
48
+ Fetches all questions, runs the BasicAgent on them, submits all answers,
49
+ and displays the results.
50
+ """
51
+ # --- Determine HF Space Runtime URL and Repo URL ---
52
+ space_id = os.getenv("SPACE_ID") # Get the SPACE_ID for sending link to the code
53
+
54
+ if profile:
55
+ username= f"{profile.username}"
56
+ print(f"User logged in: {username}")
57
+ else:
58
+ print("User not logged in.")
59
+ return "Please Login to Hugging Face with the button.", None
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
61
  api_url = DEFAULT_API_URL
62
  questions_url = f"{api_url}/questions"
63
  submit_url = f"{api_url}/submit"
64
 
65
+ # 1. Instantiate Agent
66
+ try:
67
+ agent = Agent(
68
+ model=get_model("LiteLLMModel", MODEL_ID),
69
+ tools=get_tools()
70
+ )
71
+ except Exception as e:
72
+ print(f"Error instantiating agent: {e}")
73
+ return f"Error initializing agent: {e}", None
74
+ # 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)
75
+ agent_code = f"https://huggingface.co/spaces/{space_id}/tree/main"
76
+ print(agent_code)
77
 
78
+ # 2. Fetch Questions
79
+ print(f"Fetching questions from: {questions_url}")
80
  try:
81
  response = requests.get(questions_url, timeout=15)
82
+ response.raise_for_status()
83
+ questions_data = response.json()
84
+ if not questions_data:
85
+ print("Fetched questions list is empty.")
86
+ return "Fetched questions list is empty or invalid format.", None
87
+ print(f"Fetched {len(questions_data)} questions.")
88
+ questions_data = questions_data[:2]
89
+ except requests.exceptions.RequestException as e:
90
+ print(f"Error fetching questions: {e}")
91
  return f"Error fetching questions: {e}", None
92
+ except requests.exceptions.JSONDecodeError as e:
93
+ print(f"Error decoding JSON response from questions endpoint: {e}")
94
+ print(f"Response text: {response.text[:500]}")
95
+ return f"Error decoding server response for questions: {e}", None
96
+ except Exception as e:
97
+ print(f"An unexpected error occurred fetching questions: {e}")
98
+ return f"An unexpected error occurred fetching questions: {e}", None
99
+
100
+ # 3. Run your Agent
101
+ print(f"Running agent on {len(questions_data)} questions...")
102
+ answers_payload, results_log = await run_questions_async(agent, questions_data)
103
 
104
+ if not answers_payload:
105
+ print("Agent did not produce any answers to submit.")
106
+ return "Agent did not produce any answers to submit.", pd.DataFrame(results_log)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
 
108
+ # 4. Prepare Submission
109
+ submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload}
110
+ status_update = f"Agent finished. Submitting {len(answers_payload)} answers for user '{username}'..."
111
+ print(status_update)
112
+
113
+ # 5. Submit
114
+ print(f"Submitting {len(answers_payload)} answers to: {submit_url}")
115
  try:
116
+ response = requests.post(submit_url, json=submission_data, timeout=60)
117
+ response.raise_for_status()
118
+ result_data = response.json()
119
+ final_status = (
120
+ f"Submission Successful!\n"
121
+ f"User: {result_data.get('username')}\n"
122
+ f"Overall Score: {result_data.get('score', 'N/A')}% "
123
+ f"({result_data.get('correct_count', '?')}/{result_data.get('total_attempted', '?')} correct)\n"
124
+ f"Message: {result_data.get('message', 'No message received.')}"
125
+ )
126
+ print("Submission successful.")
127
+ results_df = pd.DataFrame(results_log)
128
+ return final_status, results_df
129
+ except requests.exceptions.HTTPError as e:
130
+ error_detail = f"Server responded with status {e.response.status_code}."
131
+ try:
132
+ error_json = e.response.json()
133
+ error_detail += f" Detail: {error_json.get('detail', e.response.text)}"
134
+ except requests.exceptions.JSONDecodeError:
135
+ error_detail += f" Response: {e.response.text[:500]}"
136
+ status_message = f"Submission Failed: {error_detail}"
137
+ print(status_message)
138
+ results_df = pd.DataFrame(results_log)
139
+ return status_message, results_df
140
+ except requests.exceptions.Timeout:
141
+ status_message = "Submission Failed: The request timed out."
142
+ print(status_message)
143
+ results_df = pd.DataFrame(results_log)
144
+ return status_message, results_df
145
+ except requests.exceptions.RequestException as e:
146
+ status_message = f"Submission Failed: Network error - {e}"
147
+ print(status_message)
148
+ results_df = pd.DataFrame(results_log)
149
+ return status_message, results_df
150
  except Exception as e:
151
+ status_message = f"An unexpected error occurred during submission: {e}"
152
+ print(status_message)
153
+ results_df = pd.DataFrame(results_log)
154
+ return status_message, results_df
 
 
 
 
 
155
 
 
156
 
157
+ # --- Build Gradio Interface using Blocks ---
 
 
158
  with gr.Blocks() as demo:
159
+ gr.Markdown("# Basic Agent Evaluation Runner")
160
+ gr.Markdown(
161
+ """
162
+ **Instructions:**
163
+ 1. Please clone this space, then modify the code to define your agent's logic, the tools, the necessary packages, etc ...
164
+ 2. Log in to your Hugging Face account using the button below. This uses your HF username for submission.
165
+ 3. Click 'Run Evaluation & Submit All Answers' to fetch questions, run your agent, submit answers, and see the score.
166
+ """
167
+ )
168
+
169
  gr.LoginButton()
170
 
171
+ run_button = gr.Button("Run Evaluation & Submit All Answers")
 
 
172
 
173
+ status_output = gr.Textbox(label="Run Status / Submission Result", lines=5, interactive=False)
174
+ # Removed max_rows=10 from DataFrame constructor
175
+ results_table = gr.DataFrame(label="Questions and Agent Answers", wrap=True)
176
+
177
+ run_button.click(
178
+ fn=run_and_submit_all,
179
+ outputs=[status_output, results_table]
180
+ )
181
 
182
+ if __name__ == "__main__":
183
+ print("\n" + "-"*30 + " App Starting " + "-"*30)
184
+ # Check for SPACE_HOST and SPACE_ID at startup for information
185
+ space_host_startup = os.getenv("SPACE_HOST")
186
+ space_id_startup = os.getenv("SPACE_ID") # Get SPACE_ID at startup
187
+
188
+ if space_host_startup:
189
+ print(f"✅ SPACE_HOST found: {space_host_startup}")
190
+ print(f" Runtime URL should be: https://{space_host_startup}.hf.space")
191
+ else:
192
+ print("ℹ️ SPACE_HOST environment variable not found (running locally?).")
193
+
194
+ if space_id_startup: # Print repo URLs if SPACE_ID is found
195
+ print(f"✅ SPACE_ID found: {space_id_startup}")
196
+ print(f" Repo URL: https://huggingface.co/spaces/{space_id_startup}")
197
+ print(f" Repo Tree URL: https://huggingface.co/spaces/{space_id_startup}/tree/main")
198
+ else:
199
+ print("ℹ️ SPACE_ID environment variable not found (running locally?). Repo URL cannot be determined.")
200
+
201
+ print("-"*(60 + len(" App Starting ")) + "\n")
202
+
203
+ print("Launching Gradio Interface for Basic Agent Evaluation...")
204
+ demo.launch(debug=True, share=False)