huggingface / huggingface/agents-course

Leaderboard does not reflect true personal score

Open
#483 2 comments 1 reaction 0 assignees View on GitHub
Dominant language
MDX
Stars
32.6k
Forks
2.3k
PR merge metrics
No merged PRs in 30d

Description

Drawing your attention on top projects achieving 100 pts:

1) that duplicate `https://huggingface.co/spaces/baixianger/RobotPai/tree/main`, which actually uses RAG on a vector store of GAIA answers stored in `https://huggingface.co/spaces/baixianger/RobotPai/blob/main/supabase_docs.csv`.

2) or worse, that simply code the answers like `https://huggingface.co/spaces/nishant92/Final_Assignment_Template/blob/main/app.py` a shown below:

```
class BasicAgent:
def __init__(self):
self.wikipedia_tool = WikipediaSearchTool()
print("BasicAgent initialized.")

def __call__(self, question: str) -> str:
print(f"Agent received question: {question}")

if "studio albums" in question and "Mercedes Sosa" in question:
wiki_text = self.wikipedia_tool.search("Mercedes Sosa studio albums between 2000 and 2009")
album_list = self.extract_albums(wiki_text)
album_count = len(album_list)
return str(album_count)
elif "L1vXCYZAYYM" in question:
return str(3)
elif "tfel" in question:
return str("right")
elif "Featured Article" in question and "November 2016" in question:
return str("FunkMonk")
elif "table defining" in question:
return str("b,e")
elif "1htKBjuUWec" in question:
return str("Extremely")
elif "CK-12 license" in question:
return str("Louvrier")
elif "grocery list" in question:
return str("broccoli, celery, fresh basil, lettuce, sweet potatoes")
elif "CK-12 license" in question:
return str("Louvrier")
elif "Everybody Loves Raymond" in question:
return str("Wojciech")
elif "Homework.mp3" in question:
return str("132, 133, 134, 197, 245")
elif "fast-food chain" in question:
return str(89706.00)
elif "Yankee " in question:
return str(519)
elif "Carolyn Collins Petersen" in question:
return str("80GSFC21M0002")
elif "Vietnamese specimens" in question:
return str("Saint Petersburg")
elif "Olympics" in question:
return str("CUB")
elif "pitchers" in question and "Taishō Tamai" in question:
return str("Yoshida, Uehara")
elif "Malko Competition" in question:
return str("Dmitry")
else:
return "This is a default answer."
```

Kind of frustrating for those who have actually coded agents but only achieve 75%.

You have some governing to do if you want your certificates to mean something.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.