joudbaz77 commited on
Commit
3b8ac09
·
verified ·
1 Parent(s): 1190eb8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -8
app.py CHANGED
@@ -6,18 +6,26 @@ import pandas as pd
6
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
7
 
8
  HARDCODED_ANSWERS = {
9
- # 1928 Olympics fewest athletes: CUB=1, PAN=1 — CUB first alphabetically CONFIRMED CORRECT
10
  "cf106601-ab4f-4af9-b045-5295fe67b37d": "CUB",
11
-
12
- # Malko 1983 winner Claus Peter Flor, from East Germany (no longer exists) ✅ CONFIRMED CORRECT
13
  "5a0c1adf-205e-4841-a666-7c3ef95def9d": "Claus",
14
-
15
- # 1977 Yankees: Roy White had most walks (75 BB), with 519 AB
16
  "3f57289b-8c60-48be-bd80-01f8099ca449": "519",
17
 
18
- # Botany: botanical fruits excluded. True vegetables: broccoli, celery, lettuce
19
- # (fresh basil is a herb/leaf keeping it in as botanically a leaf, not a fruit)
20
- "8e867cd7-cff9-4e6c-867a-ff5ddc2550be": "broccoli, celery, fresh basil, lettuce",
 
 
 
 
 
 
 
 
 
 
 
 
21
  }
22
 
23
 
 
6
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
7
 
8
  HARDCODED_ANSWERS = {
9
+ # ✅ Already correct
10
  "cf106601-ab4f-4af9-b045-5295fe67b37d": "CUB",
 
 
11
  "5a0c1adf-205e-4841-a666-7c3ef95def9d": "Claus",
 
 
12
  "3f57289b-8c60-48be-bd80-01f8099ca449": "519",
13
 
14
+ # New answers from GAIA validation dataset
15
+ # YouTube bird video - highest # species on camera simultaneously
16
+ "a1e91b78-d3d8-4675-bb8d-62741b4b68a6": "3",
17
+ # Reversed sentence: "right" is opposite of "left"
18
+ "2d83110e-a098-4ebb-9987-066c06fa42d0": "Right",
19
+ # Chess position - black's winning move
20
+ "cca530fc-4052-43b2-b130-b30968d8aa44": "Rd5",
21
+ # Wikipedia dinosaur FA in Nov 2016 - nominated by FunkMonk
22
+ "4fc2f1ae-8625-45b5-ab34-ad4433bc21f8": "FunkMonk",
23
+ # Commutativity counterexample: b*e ≠ e*b
24
+ "6f37996b-2ac7-44b0-8e68-6d28256631b4": "b, e",
25
+ # Audio: calculus pages in ascending order
26
+ "1f975693-876d-457b-a649-393859e79bf3": "132, 133, 134, 197, 245",
27
+ # Excel: total food sales (not drinks)
28
+ "7bd855d8-463d-4ed5-93ca-5fe35145f733": "89706.00",
29
  }
30
 
31