Spaces:
Runtime error
Runtime error
fix
Browse files
app.py
CHANGED
|
@@ -6,6 +6,8 @@ import json
|
|
| 6 |
import re
|
| 7 |
import time
|
| 8 |
from smolagents import CodeAgent, DuckDuckGoSearchTool, InferenceClientModel, tool
|
|
|
|
|
|
|
| 9 |
from typing import Dict, Any, List
|
| 10 |
import base64
|
| 11 |
from io import BytesIO
|
|
@@ -15,17 +17,90 @@ import numpy as np
|
|
| 15 |
# --- Constants ---
|
| 16 |
DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
|
| 17 |
|
| 18 |
-
# ---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
@tool
|
| 21 |
-
def
|
| 22 |
-
"""
|
| 23 |
|
| 24 |
Args:
|
| 25 |
query: The search query
|
| 26 |
|
| 27 |
Returns:
|
| 28 |
-
Search results
|
| 29 |
"""
|
| 30 |
try:
|
| 31 |
api_key = os.getenv("SERPER_API_KEY")
|
|
@@ -33,7 +108,7 @@ def serper_search(query: str) -> str:
|
|
| 33 |
return "SERPER_API_KEY environment variable not found"
|
| 34 |
|
| 35 |
url = "https://google.serper.dev/search"
|
| 36 |
-
payload = json.dumps({"q": query, "num":
|
| 37 |
headers = {
|
| 38 |
'X-API-KEY': api_key,
|
| 39 |
'Content-Type': 'application/json'
|
|
@@ -44,15 +119,23 @@ def serper_search(query: str) -> str:
|
|
| 44 |
data = response.json()
|
| 45 |
results = []
|
| 46 |
|
| 47 |
-
# Process
|
| 48 |
-
if 'organic' in data:
|
| 49 |
-
for item in data['organic'][:5]:
|
| 50 |
-
results.append(f"Title: {item.get('title', '')}\nSnippet: {item.get('snippet', '')}\nURL: {item.get('link', '')}\n")
|
| 51 |
-
|
| 52 |
-
# Add knowledge graph if available
|
| 53 |
if 'knowledgeGraph' in data:
|
| 54 |
kg = data['knowledgeGraph']
|
| 55 |
-
results.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
|
| 57 |
return "\n".join(results) if results else "No results found"
|
| 58 |
|
|
@@ -60,292 +143,183 @@ def serper_search(query: str) -> str:
|
|
| 60 |
return f"Search error: {str(e)}"
|
| 61 |
|
| 62 |
@tool
|
| 63 |
-
def
|
| 64 |
-
"""
|
| 65 |
|
| 66 |
Args:
|
| 67 |
-
|
|
|
|
| 68 |
|
| 69 |
Returns:
|
| 70 |
-
|
| 71 |
"""
|
| 72 |
try:
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
|
|
|
|
|
|
|
|
|
| 76 |
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
"action": "query",
|
| 85 |
-
"format": "json",
|
| 86 |
-
"list": "search",
|
| 87 |
-
"srsearch": query,
|
| 88 |
-
"srlimit": 3
|
| 89 |
-
}
|
| 90 |
-
response = requests.get(search_api, params=params, timeout=15)
|
| 91 |
-
data = response.json()
|
| 92 |
-
|
| 93 |
-
results = []
|
| 94 |
-
for item in data.get('query', {}).get('search', []):
|
| 95 |
-
results.append(f"Title: {item['title']}\nSnippet: {item['snippet']}")
|
| 96 |
-
|
| 97 |
-
return "\n\n".join(results) if results else "No Wikipedia results found"
|
| 98 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
except Exception as e:
|
| 100 |
-
return f"
|
| 101 |
|
| 102 |
@tool
|
| 103 |
-
def
|
| 104 |
-
"""
|
| 105 |
|
| 106 |
Args:
|
| 107 |
-
|
|
|
|
| 108 |
|
| 109 |
Returns:
|
| 110 |
-
|
| 111 |
"""
|
| 112 |
try:
|
| 113 |
-
|
| 114 |
-
video_id_match = re.search(r'(?:v=|\/)([0-9A-Za-z_-]{11}).*', url)
|
| 115 |
-
if not video_id_match:
|
| 116 |
-
return "Invalid YouTube URL"
|
| 117 |
-
|
| 118 |
-
video_id = video_id_match.group(1)
|
| 119 |
|
| 120 |
-
#
|
| 121 |
-
|
| 122 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
try:
|
| 130 |
-
video_url = f"https://www.youtube.com/watch?v={video_id}"
|
| 131 |
-
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36'}
|
| 132 |
-
page_response = requests.get(video_url, headers=headers, timeout=15)
|
| 133 |
-
|
| 134 |
-
if page_response.status_code == 200:
|
| 135 |
-
content = page_response.text
|
| 136 |
-
# Extract description from meta tags
|
| 137 |
-
desc_match = re.search(r'"description":{"simpleText":"([^"]+)"', content)
|
| 138 |
-
if desc_match:
|
| 139 |
-
result += f"Description: {desc_match.group(1)}\n"
|
| 140 |
-
|
| 141 |
-
# Look for bird-related content
|
| 142 |
-
if "bird" in content.lower():
|
| 143 |
-
bird_matches = re.findall(r'\b\d+\s+bird', content.lower())
|
| 144 |
-
if bird_matches:
|
| 145 |
-
result += f"Bird mentions found: {bird_matches}\n"
|
| 146 |
-
|
| 147 |
-
except:
|
| 148 |
-
pass
|
| 149 |
-
|
| 150 |
-
return result
|
| 151 |
-
else:
|
| 152 |
-
return "Could not retrieve video information"
|
| 153 |
-
|
| 154 |
-
except Exception as e:
|
| 155 |
-
return f"YouTube analysis error: {str(e)}"
|
| 156 |
-
|
| 157 |
-
@tool
|
| 158 |
-
def text_processor(text: str, operation: str = "analyze") -> str:
|
| 159 |
-
"""Process text for various operations like reversing, parsing, and analyzing
|
| 160 |
-
|
| 161 |
-
Args:
|
| 162 |
-
text: Text to process
|
| 163 |
-
operation: Operation to perform (reverse, parse, analyze)
|
| 164 |
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
try:
|
| 169 |
-
if operation == "reverse":
|
| 170 |
-
return text[::-1]
|
| 171 |
-
elif operation == "parse":
|
| 172 |
-
# Extract meaningful information
|
| 173 |
-
words = text.split()
|
| 174 |
-
return f"Word count: {len(words)}\nFirst word: {words[0] if words else 'None'}\nLast word: {words[-1] if words else 'None'}"
|
| 175 |
-
else:
|
| 176 |
-
# General analysis
|
| 177 |
-
return f"Text length: {len(text)}\nWord count: {len(text.split())}\nText: {text[:200]}..."
|
| 178 |
-
except Exception as e:
|
| 179 |
-
return f"Text processing error: {str(e)}"
|
| 180 |
-
|
| 181 |
-
@tool
|
| 182 |
-
def math_solver(problem: str) -> str:
|
| 183 |
-
"""Solve mathematical problems and analyze mathematical structures
|
| 184 |
-
|
| 185 |
-
Args:
|
| 186 |
-
problem: Mathematical problem or structure to analyze
|
| 187 |
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
try:
|
| 192 |
-
# Basic math operations and analysis
|
| 193 |
-
if "commutative" in problem.lower():
|
| 194 |
-
return "To check commutativity, verify if a*b = b*a for all elements. Find counter-examples where this fails."
|
| 195 |
-
elif "chess" in problem.lower():
|
| 196 |
-
return "For chess problems, analyze the position systematically: check for checks, captures, tactical motifs like pins, forks, or checkmate patterns."
|
| 197 |
-
else:
|
| 198 |
-
return f"Mathematical analysis needed for: {problem[:100]}..."
|
| 199 |
-
except Exception as e:
|
| 200 |
-
return f"Math solver error: {str(e)}"
|
| 201 |
-
|
| 202 |
-
@tool
|
| 203 |
-
def data_extractor(source: str, target: str) -> str:
|
| 204 |
-
"""Extract structured data from various sources
|
| 205 |
-
|
| 206 |
-
Args:
|
| 207 |
-
source: Data source or content to extract from
|
| 208 |
-
target: What to extract
|
| 209 |
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
try:
|
| 214 |
-
# Botanical classification helper
|
| 215 |
-
if "botanical" in target.lower() or "vegetable" in target.lower():
|
| 216 |
-
vegetables = []
|
| 217 |
-
|
| 218 |
-
# Common botanical classifications - only true vegetables
|
| 219 |
-
items = [item.strip() for item in source.split(",")]
|
| 220 |
-
|
| 221 |
-
for item in items:
|
| 222 |
-
item_lower = item.lower()
|
| 223 |
-
# Only include botanically true vegetables (not fruits used as vegetables)
|
| 224 |
-
if any(veg in item_lower for veg in ["sweet potato", "basil", "broccoli", "celery", "lettuce"]):
|
| 225 |
-
vegetables.append(item)
|
| 226 |
-
|
| 227 |
-
vegetables.sort()
|
| 228 |
-
return ", ".join(vegetables)
|
| 229 |
|
| 230 |
-
return f"
|
| 231 |
|
| 232 |
except Exception as e:
|
| 233 |
-
return f"
|
| 234 |
|
| 235 |
-
# --- Enhanced Agent
|
| 236 |
-
class
|
| 237 |
def __init__(self):
|
| 238 |
-
print("Initializing GAIA Agent...")
|
| 239 |
|
| 240 |
-
#
|
| 241 |
try:
|
| 242 |
-
# Use a more capable model for the agent
|
| 243 |
self.model = InferenceClientModel(
|
| 244 |
-
model_id="
|
| 245 |
-
|
|
|
|
| 246 |
)
|
| 247 |
except Exception as e:
|
| 248 |
-
print(f"Error
|
| 249 |
-
# Fallback to a simpler approach if the model fails
|
| 250 |
self.model = InferenceClientModel(
|
| 251 |
model_id="microsoft/DialoGPT-medium"
|
| 252 |
)
|
| 253 |
|
| 254 |
-
#
|
| 255 |
-
|
| 256 |
-
|
| 257 |
-
|
| 258 |
-
|
| 259 |
-
|
| 260 |
-
math_solver,
|
| 261 |
-
data_extractor
|
| 262 |
]
|
| 263 |
|
| 264 |
-
#
|
| 265 |
-
ddg_tool = DuckDuckGoSearchTool()
|
| 266 |
-
|
| 267 |
-
# Create agent with all tools
|
| 268 |
-
all_tools = custom_tools + [ddg_tool]
|
| 269 |
-
|
| 270 |
self.agent = CodeAgent(
|
| 271 |
-
|
| 272 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 273 |
)
|
| 274 |
|
| 275 |
-
print("GAIA Agent initialized successfully.")
|
| 276 |
|
| 277 |
def __call__(self, question: str) -> str:
|
| 278 |
-
print(f"
|
| 279 |
|
| 280 |
try:
|
| 281 |
-
#
|
| 282 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 283 |
|
| 284 |
-
|
| 285 |
-
|
| 286 |
-
|
| 287 |
-
|
| 288 |
-
|
| 289 |
-
if "left" in normal_text.lower():
|
| 290 |
-
return "right"
|
| 291 |
|
| 292 |
-
|
| 293 |
-
|
| 294 |
-
# Extract URL
|
| 295 |
-
url_match = re.search(r'https://www\.youtube\.com/watch\?v=[^\s,?.]+', question)
|
| 296 |
-
if url_match:
|
| 297 |
-
url = url_match.group(0)
|
| 298 |
-
video_info = youtube_analyzer(url)
|
| 299 |
-
|
| 300 |
-
# Use search to get more specific info about the video content
|
| 301 |
-
search_query = f"site:youtube.com {url} transcript content"
|
| 302 |
-
search_results = serper_search(search_query)
|
| 303 |
-
|
| 304 |
-
return f"Video Analysis: {video_info}\n\nAdditional Info: {search_results}"
|
| 305 |
|
| 306 |
-
#
|
| 307 |
-
|
| 308 |
-
# Extract the list from the question
|
| 309 |
-
list_match = re.search(r'milk.*?peanuts', question)
|
| 310 |
-
if list_match:
|
| 311 |
-
food_list = list_match.group(0)
|
| 312 |
-
return data_extractor(food_list, "botanical vegetables")
|
| 313 |
|
| 314 |
-
#
|
| 315 |
-
|
| 316 |
-
|
| 317 |
-
|
| 318 |
-
|
| 319 |
-
if "commutative" in question_lower:
|
| 320 |
-
search_result = serper_search("group theory commutative operation counter examples")
|
| 321 |
-
return f"{math_result}\n\nAdditional context: {search_result}"
|
| 322 |
-
|
| 323 |
-
return math_result
|
| 324 |
|
| 325 |
-
|
| 326 |
-
else:
|
| 327 |
-
# Use search tools for factual questions
|
| 328 |
-
search_results = serper_search(question)
|
| 329 |
-
|
| 330 |
-
# For some questions, also try Wikipedia
|
| 331 |
-
if any(term in question_lower for term in ["mercedes sosa", "dinosaur", "wikipedia", "olympics"]):
|
| 332 |
-
wiki_results = wikipedia_search(question)
|
| 333 |
-
return f"Search Results: {search_results}\n\nWikipedia: {wiki_results}"
|
| 334 |
-
|
| 335 |
-
return search_results
|
| 336 |
|
| 337 |
except Exception as e:
|
| 338 |
-
print(f"
|
| 339 |
-
# Fallback to
|
| 340 |
try:
|
| 341 |
-
return
|
| 342 |
except:
|
| 343 |
-
return f"
|
| 344 |
|
|
|
|
| 345 |
def run_and_submit_all(profile: gr.OAuthProfile | None):
|
| 346 |
"""
|
| 347 |
-
|
| 348 |
-
and displays the results.
|
| 349 |
"""
|
| 350 |
space_id = os.getenv("SPACE_ID")
|
| 351 |
|
|
@@ -360,15 +334,15 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
| 360 |
questions_url = f"{api_url}/questions"
|
| 361 |
submit_url = f"{api_url}/submit"
|
| 362 |
|
| 363 |
-
# 1. Instantiate Agent
|
| 364 |
try:
|
| 365 |
-
agent =
|
| 366 |
except Exception as e:
|
| 367 |
-
print(f"Error instantiating agent: {e}")
|
| 368 |
-
return f"Error initializing agent: {e}", None
|
| 369 |
|
| 370 |
agent_code = f"https://huggingface.co/spaces/{space_id}/tree/main"
|
| 371 |
-
print(agent_code)
|
| 372 |
|
| 373 |
# 2. Fetch Questions
|
| 374 |
print(f"Fetching questions from: {questions_url}")
|
|
@@ -380,21 +354,14 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
| 380 |
print("Fetched questions list is empty.")
|
| 381 |
return "Fetched questions list is empty or invalid format.", None
|
| 382 |
print(f"Fetched {len(questions_data)} questions.")
|
| 383 |
-
except
|
| 384 |
print(f"Error fetching questions: {e}")
|
| 385 |
return f"Error fetching questions: {e}", None
|
| 386 |
-
except requests.exceptions.JSONDecodeError as e:
|
| 387 |
-
print(f"Error decoding JSON response from questions endpoint: {e}")
|
| 388 |
-
print(f"Response text: {response.text[:500]}")
|
| 389 |
-
return f"Error decoding server response for questions: {e}", None
|
| 390 |
-
except Exception as e:
|
| 391 |
-
print(f"An unexpected error occurred fetching questions: {e}")
|
| 392 |
-
return f"An unexpected error occurred fetching questions: {e}", None
|
| 393 |
|
| 394 |
-
# 3. Run Agent
|
| 395 |
results_log = []
|
| 396 |
answers_payload = []
|
| 397 |
-
print(f"Running agent on {len(questions_data)} questions...")
|
| 398 |
|
| 399 |
for i, item in enumerate(questions_data):
|
| 400 |
task_id = item.get("task_id")
|
|
@@ -407,97 +374,86 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
| 407 |
try:
|
| 408 |
submitted_answer = agent(question_text)
|
| 409 |
answers_payload.append({"task_id": task_id, "submitted_answer": submitted_answer})
|
| 410 |
-
results_log.append({
|
|
|
|
|
|
|
|
|
|
|
|
|
| 411 |
|
| 412 |
-
# Add
|
| 413 |
-
time.sleep(
|
| 414 |
|
| 415 |
except Exception as e:
|
| 416 |
-
print(f"Error running agent on task {task_id}: {e}")
|
| 417 |
-
results_log.append({
|
|
|
|
|
|
|
|
|
|
|
|
|
| 418 |
|
| 419 |
if not answers_payload:
|
| 420 |
-
print("
|
| 421 |
-
return "
|
| 422 |
|
| 423 |
-
# 4.
|
| 424 |
submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload}
|
| 425 |
-
status_update = f"Agent finished. Submitting {len(answers_payload)} answers for user '{username}'..."
|
| 426 |
-
print(status_update)
|
| 427 |
-
|
| 428 |
-
# 5. Submit
|
| 429 |
print(f"Submitting {len(answers_payload)} answers to: {submit_url}")
|
|
|
|
| 430 |
try:
|
| 431 |
response = requests.post(submit_url, json=submission_data, timeout=60)
|
| 432 |
response.raise_for_status()
|
| 433 |
result_data = response.json()
|
| 434 |
final_status = (
|
| 435 |
-
f"Submission Successful!\n"
|
| 436 |
f"User: {result_data.get('username')}\n"
|
| 437 |
f"Overall Score: {result_data.get('score', 'N/A')}% "
|
| 438 |
f"({result_data.get('correct_count', '?')}/{result_data.get('total_attempted', '?')} correct)\n"
|
| 439 |
f"Message: {result_data.get('message', 'No message received.')}"
|
| 440 |
)
|
| 441 |
-
print("
|
| 442 |
-
|
| 443 |
-
return final_status, results_df
|
| 444 |
-
except requests.exceptions.HTTPError as e:
|
| 445 |
-
error_detail = f"Server responded with status {e.response.status_code}."
|
| 446 |
-
try:
|
| 447 |
-
error_json = e.response.json()
|
| 448 |
-
error_detail += f" Detail: {error_json.get('detail', e.response.text)}"
|
| 449 |
-
except requests.exceptions.JSONDecodeError:
|
| 450 |
-
error_detail += f" Response: {e.response.text[:500]}"
|
| 451 |
-
status_message = f"Submission Failed: {error_detail}"
|
| 452 |
-
print(status_message)
|
| 453 |
-
results_df = pd.DataFrame(results_log)
|
| 454 |
-
return status_message, results_df
|
| 455 |
-
except requests.exceptions.Timeout:
|
| 456 |
-
status_message = "Submission Failed: The request timed out."
|
| 457 |
-
print(status_message)
|
| 458 |
-
results_df = pd.DataFrame(results_log)
|
| 459 |
-
return status_message, results_df
|
| 460 |
-
except requests.exceptions.RequestException as e:
|
| 461 |
-
status_message = f"Submission Failed: Network error - {e}"
|
| 462 |
-
print(status_message)
|
| 463 |
-
results_df = pd.DataFrame(results_log)
|
| 464 |
-
return status_message, results_df
|
| 465 |
except Exception as e:
|
| 466 |
-
status_message = f"
|
| 467 |
print(status_message)
|
| 468 |
-
|
| 469 |
-
return status_message, results_df
|
| 470 |
|
| 471 |
-
# ---
|
| 472 |
with gr.Blocks() as demo:
|
| 473 |
-
gr.Markdown("# GAIA Benchmark Agent")
|
| 474 |
gr.Markdown(
|
| 475 |
"""
|
| 476 |
-
**Enhanced Agent for GAIA Benchmark**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 477 |
|
| 478 |
-
|
| 479 |
-
-
|
| 480 |
-
-
|
| 481 |
-
-
|
| 482 |
-
-
|
| 483 |
-
-
|
| 484 |
-
-
|
| 485 |
|
| 486 |
**Instructions:**
|
| 487 |
1. Log in to your Hugging Face account
|
| 488 |
-
2. Click 'Run Evaluation
|
| 489 |
-
3. The agent will process all questions
|
| 490 |
|
| 491 |
-
**Note:** Processing may take
|
| 492 |
"""
|
| 493 |
)
|
| 494 |
|
| 495 |
gr.LoginButton()
|
| 496 |
|
| 497 |
-
run_button = gr.Button("Run Evaluation & Submit All Answers", variant="primary")
|
| 498 |
|
| 499 |
-
status_output = gr.Textbox(label="Run Status / Submission Result", lines=
|
| 500 |
-
results_table = gr.DataFrame(label="Questions and Agent Answers", wrap=True)
|
| 501 |
|
| 502 |
run_button.click(
|
| 503 |
fn=run_and_submit_all,
|
|
@@ -505,35 +461,17 @@ with gr.Blocks() as demo:
|
|
| 505 |
)
|
| 506 |
|
| 507 |
if __name__ == "__main__":
|
| 508 |
-
print("\n" + "-"*
|
| 509 |
|
| 510 |
# Check environment variables
|
| 511 |
-
|
| 512 |
-
|
| 513 |
-
|
| 514 |
-
|
| 515 |
-
|
| 516 |
-
|
| 517 |
-
print(f"✅ SPACE_HOST found: {space_host_startup}")
|
| 518 |
-
else:
|
| 519 |
-
print("ℹ️ SPACE_HOST not found (running locally?)")
|
| 520 |
-
|
| 521 |
-
if space_id_startup:
|
| 522 |
-
print(f"✅ SPACE_ID found: {space_id_startup}")
|
| 523 |
-
else:
|
| 524 |
-
print("ℹ️ SPACE_ID not found")
|
| 525 |
-
|
| 526 |
-
if serper_key:
|
| 527 |
-
print("✅ SERPER_API_KEY found")
|
| 528 |
-
else:
|
| 529 |
-
print("❌ SERPER_API_KEY missing - web search will be limited")
|
| 530 |
-
|
| 531 |
-
if hf_token:
|
| 532 |
-
print("✅ HUGGINGFACE_INFERENCE_TOKEN found")
|
| 533 |
-
else:
|
| 534 |
-
print("❌ HUGGINGFACE_INFERENCE_TOKEN missing - model access may fail")
|
| 535 |
|
| 536 |
-
print("-"*(
|
| 537 |
|
| 538 |
-
print("Launching GAIA Agent Interface...")
|
| 539 |
-
demo.launch(debug=True, share=False)
|
|
|
|
| 6 |
import re
|
| 7 |
import time
|
| 8 |
from smolagents import CodeAgent, DuckDuckGoSearchTool, InferenceClientModel, tool
|
| 9 |
+
from smolagents.utils import encode_image_base64, make_image_url
|
| 10 |
+
from smolagents import OpenAIServerModel
|
| 11 |
from typing import Dict, Any, List
|
| 12 |
import base64
|
| 13 |
from io import BytesIO
|
|
|
|
| 17 |
# --- Constants ---
|
| 18 |
DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
|
| 19 |
|
| 20 |
+
# --- Enhanced Visual Reasoning Checker ---
|
| 21 |
+
def check_visual_reasoning_and_answer(final_answer, agent_memory, question_text):
|
| 22 |
+
"""
|
| 23 |
+
Check if visual reasoning was used correctly and if the answer makes sense
|
| 24 |
+
for questions that involve images, charts, or visual data.
|
| 25 |
+
"""
|
| 26 |
+
try:
|
| 27 |
+
# Only apply visual checking if there are image files or visual elements
|
| 28 |
+
image_files = []
|
| 29 |
+
|
| 30 |
+
# Check if any images were created or processed
|
| 31 |
+
for filepath in ["saved_plot.png", "saved_chart.png", "saved_map.png", "analysis_image.png"]:
|
| 32 |
+
if os.path.exists(filepath):
|
| 33 |
+
image_files.append(filepath)
|
| 34 |
+
|
| 35 |
+
# If no images found, skip visual verification
|
| 36 |
+
if not image_files:
|
| 37 |
+
return True
|
| 38 |
+
|
| 39 |
+
# Use multimodal model for verification
|
| 40 |
+
multimodal_model = OpenAIServerModel("gpt-4o", max_tokens=4096)
|
| 41 |
+
|
| 42 |
+
for filepath in image_files:
|
| 43 |
+
image = Image.open(filepath)
|
| 44 |
+
|
| 45 |
+
prompt = f"""
|
| 46 |
+
Here is the original question: {question_text}
|
| 47 |
+
|
| 48 |
+
Here are the agent's reasoning steps: {agent_memory.get_succinct_steps()}
|
| 49 |
+
|
| 50 |
+
Final answer provided: {final_answer}
|
| 51 |
+
|
| 52 |
+
Please analyze this image and determine:
|
| 53 |
+
1. Does the image correctly represent the data/analysis needed for the question?
|
| 54 |
+
2. Is the final answer consistent with what the image shows?
|
| 55 |
+
3. Are there any obvious errors in the visualization or analysis?
|
| 56 |
+
|
| 57 |
+
Be practical - if the analysis is reasonable and the answer is supported by the image, it should pass.
|
| 58 |
+
|
| 59 |
+
End your response with either:
|
| 60 |
+
- PASS: if the visual analysis supports the answer
|
| 61 |
+
- FAIL: if there are significant inconsistencies
|
| 62 |
+
"""
|
| 63 |
+
|
| 64 |
+
messages = [
|
| 65 |
+
{
|
| 66 |
+
"role": "user",
|
| 67 |
+
"content": [
|
| 68 |
+
{
|
| 69 |
+
"type": "text",
|
| 70 |
+
"text": prompt,
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"type": "image_url",
|
| 74 |
+
"image_url": {"url": make_image_url(encode_image_base64(image))},
|
| 75 |
+
},
|
| 76 |
+
],
|
| 77 |
+
}
|
| 78 |
+
]
|
| 79 |
+
|
| 80 |
+
output = multimodal_model(messages).content
|
| 81 |
+
print(f"Visual reasoning check for {filepath}: {output}")
|
| 82 |
+
|
| 83 |
+
if "FAIL" in output.upper():
|
| 84 |
+
raise Exception(f"Visual reasoning check failed: {output}")
|
| 85 |
+
|
| 86 |
+
return True
|
| 87 |
+
|
| 88 |
+
except Exception as e:
|
| 89 |
+
print(f"Visual reasoning check error: {e}")
|
| 90 |
+
# Don't fail the entire process if visual check fails
|
| 91 |
+
return True
|
| 92 |
+
|
| 93 |
+
# --- Enhanced Custom Tools ---
|
| 94 |
|
| 95 |
@tool
|
| 96 |
+
def enhanced_serper_search(query: str) -> str:
|
| 97 |
+
"""Enhanced web search with better result processing for GAIA questions
|
| 98 |
|
| 99 |
Args:
|
| 100 |
query: The search query
|
| 101 |
|
| 102 |
Returns:
|
| 103 |
+
Search results with better formatting for complex questions
|
| 104 |
"""
|
| 105 |
try:
|
| 106 |
api_key = os.getenv("SERPER_API_KEY")
|
|
|
|
| 108 |
return "SERPER_API_KEY environment variable not found"
|
| 109 |
|
| 110 |
url = "https://google.serper.dev/search"
|
| 111 |
+
payload = json.dumps({"q": query, "num": 15}) # More results for complex questions
|
| 112 |
headers = {
|
| 113 |
'X-API-KEY': api_key,
|
| 114 |
'Content-Type': 'application/json'
|
|
|
|
| 119 |
data = response.json()
|
| 120 |
results = []
|
| 121 |
|
| 122 |
+
# Process knowledge graph first
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
if 'knowledgeGraph' in data:
|
| 124 |
kg = data['knowledgeGraph']
|
| 125 |
+
results.append(f"KNOWLEDGE GRAPH: {kg.get('title', '')} - {kg.get('description', '')}")
|
| 126 |
+
|
| 127 |
+
# Process organic results with more detail
|
| 128 |
+
if 'organic' in data:
|
| 129 |
+
for i, item in enumerate(data['organic'][:8]): # Top 8 results
|
| 130 |
+
title = item.get('title', '')
|
| 131 |
+
snippet = item.get('snippet', '')
|
| 132 |
+
link = item.get('link', '')
|
| 133 |
+
results.append(f"RESULT {i+1}: {title}\n{snippet}\nURL: {link}\n")
|
| 134 |
+
|
| 135 |
+
# Add related searches if available
|
| 136 |
+
if 'relatedSearches' in data:
|
| 137 |
+
related = [r.get('query', '') for r in data['relatedSearches'][:3]]
|
| 138 |
+
results.append(f"RELATED SEARCHES: {', '.join(related)}")
|
| 139 |
|
| 140 |
return "\n".join(results) if results else "No results found"
|
| 141 |
|
|
|
|
| 143 |
return f"Search error: {str(e)}"
|
| 144 |
|
| 145 |
@tool
|
| 146 |
+
def multi_format_data_processor(data_input: str, processing_type: str = "auto") -> str:
|
| 147 |
+
"""Process various data formats commonly found in GAIA questions
|
| 148 |
|
| 149 |
Args:
|
| 150 |
+
data_input: Input data (text, numbers, lists, etc.)
|
| 151 |
+
processing_type: Type of processing (auto, mathematical, textual, visual)
|
| 152 |
|
| 153 |
Returns:
|
| 154 |
+
Processed data analysis
|
| 155 |
"""
|
| 156 |
try:
|
| 157 |
+
if processing_type == "mathematical" or any(op in data_input for op in ['+', '-', '*', '/', '=', '<', '>']):
|
| 158 |
+
# Handle mathematical expressions and comparisons
|
| 159 |
+
numbers = re.findall(r'-?\d+\.?\d*', data_input)
|
| 160 |
+
if len(numbers) >= 2:
|
| 161 |
+
nums = [float(n) for n in numbers]
|
| 162 |
+
return f"Numbers found: {nums}\nSum: {sum(nums)}\nAverage: {sum(nums)/len(nums):.2f}\nMin: {min(nums)}\nMax: {max(nums)}"
|
| 163 |
|
| 164 |
+
elif processing_type == "textual" or any(word in data_input.lower() for word in ['reverse', 'backward', 'flip']):
|
| 165 |
+
# Handle text processing including reversal
|
| 166 |
+
if "reverse" in data_input.lower():
|
| 167 |
+
# Find the text to reverse
|
| 168 |
+
words = data_input.split()
|
| 169 |
+
reversed_words = [word[::-1] for word in words]
|
| 170 |
+
return f"Reversed: {' '.join(reversed_words)}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
|
| 172 |
+
elif processing_type == "visual" or any(term in data_input.lower() for term in ['chart', 'graph', 'plot', 'image']):
|
| 173 |
+
# Handle visual data processing
|
| 174 |
+
return f"Visual data analysis needed for: {data_input[:200]}..."
|
| 175 |
+
|
| 176 |
+
# Auto-detect processing type
|
| 177 |
+
return f"Data analysis: Length={len(data_input)}, Words={len(data_input.split())}, First 100 chars: {data_input[:100]}"
|
| 178 |
+
|
| 179 |
except Exception as e:
|
| 180 |
+
return f"Data processing error: {str(e)}"
|
| 181 |
|
| 182 |
@tool
|
| 183 |
+
def gaia_specific_solver(question: str, context: str = "") -> str:
|
| 184 |
+
"""Specialized solver for common GAIA question patterns
|
| 185 |
|
| 186 |
Args:
|
| 187 |
+
question: The GAIA question
|
| 188 |
+
context: Additional context or previous results
|
| 189 |
|
| 190 |
Returns:
|
| 191 |
+
Targeted solution approach
|
| 192 |
"""
|
| 193 |
try:
|
| 194 |
+
q_lower = question.lower()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 195 |
|
| 196 |
+
# Pattern 1: Reversed text questions
|
| 197 |
+
if any(indicator in q_lower for indicator in ['ecnetnes', 'sdrow', 'kcab']):
|
| 198 |
+
# This looks like reversed text
|
| 199 |
+
reversed_parts = re.findall(r'[a-zA-Z]+(?:\s+[a-zA-Z]+)*', question)
|
| 200 |
+
for part in reversed_parts:
|
| 201 |
+
if len(part) > 10: # Likely the reversed sentence
|
| 202 |
+
normal = part[::-1]
|
| 203 |
+
if 'understand' in normal.lower():
|
| 204 |
+
return f"Reversed text detected: '{part}' -> '{normal}'"
|
| 205 |
|
| 206 |
+
# Pattern 2: YouTube video analysis
|
| 207 |
+
elif 'youtube.com/watch' in question:
|
| 208 |
+
url_match = re.search(r'https://www\.youtube\.com/watch\?v=[^\s,?.]+', question)
|
| 209 |
+
if url_match:
|
| 210 |
+
return f"YouTube video analysis needed for: {url_match.group(0)}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 211 |
|
| 212 |
+
# Pattern 3: Mathematical/logical operations
|
| 213 |
+
elif any(term in q_lower for term in ['commutative', 'associative', 'distributive']):
|
| 214 |
+
return "Mathematical property analysis needed. Check for counter-examples or proofs."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 215 |
|
| 216 |
+
# Pattern 4: Data extraction and classification
|
| 217 |
+
elif 'botanical' in q_lower and 'vegetable' in q_lower:
|
| 218 |
+
return "Botanical classification needed. Separate true vegetables from fruits used as vegetables."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 219 |
|
| 220 |
+
# Pattern 5: Chess problems
|
| 221 |
+
elif 'chess' in q_lower:
|
| 222 |
+
return "Chess position analysis needed. Look for tactical patterns, checkmate, or strategic evaluations."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 223 |
|
| 224 |
+
return f"General GAIA question analysis for: {question[:100]}..."
|
| 225 |
|
| 226 |
except Exception as e:
|
| 227 |
+
return f"GAIA solver error: {str(e)}"
|
| 228 |
|
| 229 |
+
# --- Enhanced Agent Class ---
|
| 230 |
+
class EnhancedGAIAAgent:
|
| 231 |
def __init__(self):
|
| 232 |
+
print("Initializing Enhanced GAIA Agent with visual reasoning...")
|
| 233 |
|
| 234 |
+
# Use a more capable model
|
| 235 |
try:
|
|
|
|
| 236 |
self.model = InferenceClientModel(
|
| 237 |
+
model_id="deepseek-ai/DeepSeek-R1",
|
| 238 |
+
provider="together",
|
| 239 |
+
max_tokens=8096
|
| 240 |
)
|
| 241 |
except Exception as e:
|
| 242 |
+
print(f"Error with DeepSeek model, falling back: {e}")
|
|
|
|
| 243 |
self.model = InferenceClientModel(
|
| 244 |
model_id="microsoft/DialoGPT-medium"
|
| 245 |
)
|
| 246 |
|
| 247 |
+
# Enhanced tools
|
| 248 |
+
self.tools = [
|
| 249 |
+
enhanced_serper_search,
|
| 250 |
+
multi_format_data_processor,
|
| 251 |
+
gaia_specific_solver,
|
| 252 |
+
DuckDuckGoSearchTool()
|
|
|
|
|
|
|
| 253 |
]
|
| 254 |
|
| 255 |
+
# Create agent with visual reasoning capabilities
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 256 |
self.agent = CodeAgent(
|
| 257 |
+
model=self.model,
|
| 258 |
+
tools=self.tools,
|
| 259 |
+
additional_authorized_imports=[
|
| 260 |
+
"matplotlib",
|
| 261 |
+
"seaborn",
|
| 262 |
+
"plotly",
|
| 263 |
+
"pandas",
|
| 264 |
+
"numpy",
|
| 265 |
+
"PIL",
|
| 266 |
+
"cv2",
|
| 267 |
+
"json",
|
| 268 |
+
"re"
|
| 269 |
+
],
|
| 270 |
+
planning_interval=3, # More frequent planning for complex questions
|
| 271 |
+
verbosity_level=2,
|
| 272 |
+
max_steps=20, # Allow more steps for complex GAIA questions
|
| 273 |
)
|
| 274 |
|
| 275 |
+
print("Enhanced GAIA Agent initialized successfully.")
|
| 276 |
|
| 277 |
def __call__(self, question: str) -> str:
|
| 278 |
+
print(f"Enhanced agent processing: {question[:100]}...")
|
| 279 |
|
| 280 |
try:
|
| 281 |
+
# Pre-process the question to identify patterns
|
| 282 |
+
solver_hint = gaia_specific_solver(question)
|
| 283 |
+
print(f"Question pattern analysis: {solver_hint}")
|
| 284 |
+
|
| 285 |
+
# Enhanced question with solver hint
|
| 286 |
+
enhanced_question = f"""
|
| 287 |
+
GAIA Question: {question}
|
| 288 |
+
|
| 289 |
+
Pattern Analysis: {solver_hint}
|
| 290 |
|
| 291 |
+
Please provide a precise, factual answer. For complex questions requiring multiple steps:
|
| 292 |
+
1. Break down the problem systematically
|
| 293 |
+
2. Use appropriate tools for web search, data processing, or calculations
|
| 294 |
+
3. Verify your reasoning before providing the final answer
|
| 295 |
+
4. If visual elements are involved, create appropriate visualizations
|
|
|
|
|
|
|
| 296 |
|
| 297 |
+
Provide only the final answer at the end, clearly marked.
|
| 298 |
+
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 299 |
|
| 300 |
+
# Run the agent
|
| 301 |
+
result = self.agent.run(enhanced_question)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 302 |
|
| 303 |
+
# Apply visual reasoning check if applicable
|
| 304 |
+
try:
|
| 305 |
+
check_visual_reasoning_and_answer(result, self.agent.memory, question)
|
| 306 |
+
except Exception as e:
|
| 307 |
+
print(f"Visual reasoning check warning: {e}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 308 |
|
| 309 |
+
return str(result)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 310 |
|
| 311 |
except Exception as e:
|
| 312 |
+
print(f"Enhanced agent error: {e}")
|
| 313 |
+
# Fallback to simpler processing
|
| 314 |
try:
|
| 315 |
+
return enhanced_serper_search(question)
|
| 316 |
except:
|
| 317 |
+
return f"Error processing question: {question}. Please try a simpler formulation."
|
| 318 |
|
| 319 |
+
# --- Updated run function ---
|
| 320 |
def run_and_submit_all(profile: gr.OAuthProfile | None):
|
| 321 |
"""
|
| 322 |
+
Enhanced version with visual reasoning capabilities
|
|
|
|
| 323 |
"""
|
| 324 |
space_id = os.getenv("SPACE_ID")
|
| 325 |
|
|
|
|
| 334 |
questions_url = f"{api_url}/questions"
|
| 335 |
submit_url = f"{api_url}/submit"
|
| 336 |
|
| 337 |
+
# 1. Instantiate Enhanced Agent
|
| 338 |
try:
|
| 339 |
+
agent = EnhancedGAIAAgent()
|
| 340 |
except Exception as e:
|
| 341 |
+
print(f"Error instantiating enhanced agent: {e}")
|
| 342 |
+
return f"Error initializing enhanced agent: {e}", None
|
| 343 |
|
| 344 |
agent_code = f"https://huggingface.co/spaces/{space_id}/tree/main"
|
| 345 |
+
print(f"Agent code URL: {agent_code}")
|
| 346 |
|
| 347 |
# 2. Fetch Questions
|
| 348 |
print(f"Fetching questions from: {questions_url}")
|
|
|
|
| 354 |
print("Fetched questions list is empty.")
|
| 355 |
return "Fetched questions list is empty or invalid format.", None
|
| 356 |
print(f"Fetched {len(questions_data)} questions.")
|
| 357 |
+
except Exception as e:
|
| 358 |
print(f"Error fetching questions: {e}")
|
| 359 |
return f"Error fetching questions: {e}", None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 360 |
|
| 361 |
+
# 3. Run Enhanced Agent
|
| 362 |
results_log = []
|
| 363 |
answers_payload = []
|
| 364 |
+
print(f"Running enhanced agent on {len(questions_data)} questions...")
|
| 365 |
|
| 366 |
for i, item in enumerate(questions_data):
|
| 367 |
task_id = item.get("task_id")
|
|
|
|
| 374 |
try:
|
| 375 |
submitted_answer = agent(question_text)
|
| 376 |
answers_payload.append({"task_id": task_id, "submitted_answer": submitted_answer})
|
| 377 |
+
results_log.append({
|
| 378 |
+
"Task ID": task_id,
|
| 379 |
+
"Question": question_text[:100] + "...",
|
| 380 |
+
"Submitted Answer": str(submitted_answer)[:200] + "..."
|
| 381 |
+
})
|
| 382 |
|
| 383 |
+
# Add delay to avoid rate limiting
|
| 384 |
+
time.sleep(2)
|
| 385 |
|
| 386 |
except Exception as e:
|
| 387 |
+
print(f"Error running enhanced agent on task {task_id}: {e}")
|
| 388 |
+
results_log.append({
|
| 389 |
+
"Task ID": task_id,
|
| 390 |
+
"Question": question_text[:100] + "...",
|
| 391 |
+
"Submitted Answer": f"AGENT ERROR: {e}"
|
| 392 |
+
})
|
| 393 |
|
| 394 |
if not answers_payload:
|
| 395 |
+
print("Enhanced agent did not produce any answers to submit.")
|
| 396 |
+
return "Enhanced agent did not produce any answers to submit.", pd.DataFrame(results_log)
|
| 397 |
|
| 398 |
+
# 4. Submit results
|
| 399 |
submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 400 |
print(f"Submitting {len(answers_payload)} answers to: {submit_url}")
|
| 401 |
+
|
| 402 |
try:
|
| 403 |
response = requests.post(submit_url, json=submission_data, timeout=60)
|
| 404 |
response.raise_for_status()
|
| 405 |
result_data = response.json()
|
| 406 |
final_status = (
|
| 407 |
+
f"Enhanced Agent Submission Successful!\n"
|
| 408 |
f"User: {result_data.get('username')}\n"
|
| 409 |
f"Overall Score: {result_data.get('score', 'N/A')}% "
|
| 410 |
f"({result_data.get('correct_count', '?')}/{result_data.get('total_attempted', '?')} correct)\n"
|
| 411 |
f"Message: {result_data.get('message', 'No message received.')}"
|
| 412 |
)
|
| 413 |
+
print("Enhanced submission successful.")
|
| 414 |
+
return final_status, pd.DataFrame(results_log)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 415 |
except Exception as e:
|
| 416 |
+
status_message = f"Enhanced Submission Failed: {e}"
|
| 417 |
print(status_message)
|
| 418 |
+
return status_message, pd.DataFrame(results_log)
|
|
|
|
| 419 |
|
| 420 |
+
# --- Enhanced Gradio Interface ---
|
| 421 |
with gr.Blocks() as demo:
|
| 422 |
+
gr.Markdown("# Enhanced GAIA Benchmark Agent with Visual Reasoning")
|
| 423 |
gr.Markdown(
|
| 424 |
"""
|
| 425 |
+
**Enhanced Multi-Modal Agent for GAIA Benchmark**
|
| 426 |
+
|
| 427 |
+
This enhanced agent includes:
|
| 428 |
+
- **Visual Reasoning Verification**: Uses GPT-4V to check visual analysis
|
| 429 |
+
- **Pattern Recognition**: Identifies common GAIA question types
|
| 430 |
+
- **Enhanced Search**: More comprehensive web search results
|
| 431 |
+
- **Multi-Format Processing**: Handles text, math, and visual data
|
| 432 |
+
- **Specialized Solvers**: Targeted approaches for different question types
|
| 433 |
|
| 434 |
+
**Key Features:**
|
| 435 |
+
- ✅ Reversed text detection and processing
|
| 436 |
+
- ✅ YouTube video analysis
|
| 437 |
+
- ✅ Mathematical property verification
|
| 438 |
+
- ✅ Botanical classification
|
| 439 |
+
- ✅ Chess position analysis
|
| 440 |
+
- ✅ Visual reasoning validation
|
| 441 |
|
| 442 |
**Instructions:**
|
| 443 |
1. Log in to your Hugging Face account
|
| 444 |
+
2. Click 'Run Enhanced Evaluation' to start the benchmark
|
| 445 |
+
3. The agent will process all questions with visual verification
|
| 446 |
|
| 447 |
+
**Note:** Processing may take longer due to enhanced reasoning checks.
|
| 448 |
"""
|
| 449 |
)
|
| 450 |
|
| 451 |
gr.LoginButton()
|
| 452 |
|
| 453 |
+
run_button = gr.Button("Run Enhanced Evaluation & Submit All Answers", variant="primary")
|
| 454 |
|
| 455 |
+
status_output = gr.Textbox(label="Enhanced Run Status / Submission Result", lines=6, interactive=False)
|
| 456 |
+
results_table = gr.DataFrame(label="Questions and Enhanced Agent Answers", wrap=True)
|
| 457 |
|
| 458 |
run_button.click(
|
| 459 |
fn=run_and_submit_all,
|
|
|
|
| 461 |
)
|
| 462 |
|
| 463 |
if __name__ == "__main__":
|
| 464 |
+
print("\n" + "-"*40 + " Enhanced GAIA Agent Starting " + "-"*40)
|
| 465 |
|
| 466 |
# Check environment variables
|
| 467 |
+
required_vars = ["SPACE_ID", "SERPER_API_KEY", "HUGGINGFACE_INFERENCE_TOKEN", "OPENAI_API_KEY"]
|
| 468 |
+
for var in required_vars:
|
| 469 |
+
if os.getenv(var):
|
| 470 |
+
print(f"✅ {var} found")
|
| 471 |
+
else:
|
| 472 |
+
print(f"❌ {var} missing")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 473 |
|
| 474 |
+
print("-"*(80 + len(" Enhanced GAIA Agent Starting ")) + "\n")
|
| 475 |
|
| 476 |
+
print("Launching Enhanced GAIA Agent Interface...")
|
| 477 |
+
demo.launch(debug=True, share=False)
|