Update README.md
Browse files
README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: 🕵🏻♂️
|
4 |
colorFrom: indigo
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 5.
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
hf_oauth: true
|
@@ -22,5 +22,22 @@ license: mit
|
|
22 |
<p align="center" style="width:50%">
|
23 |
Final hands-on assignment for the Hugging Face Agents course. In this project I built a multi-agent solution, evaluated it against questions from the General AI Assistants (GAIA) benchmark (level one only), and got creative with some agent and tool improvements.
|
24 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: Final Assignment
|
3 |
emoji: 🕵🏻♂️
|
4 |
colorFrom: indigo
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 5.29.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
hf_oauth: true
|
|
|
22 |
<p align="center" style="width:50%">
|
23 |
Final hands-on assignment for the Hugging Face Agents course. In this project I built a multi-agent solution, evaluated it against questions from the General AI Assistants (GAIA) benchmark (level one only), and got creative with some agent and tool improvements.
|
24 |
</div>
|
25 |
+
## About The Project
|
26 |
+
|
27 |
+
![[HF Space Screen Shot][images/submit_answers.jpg]](https://huggingface.co/spaces/civerson916/Final_Assignment_Template)
|
28 |
+
|
29 |
+
Achieving 30 points for the certification was relatively easy with the template provided and a powerful enough LLM. However, evaluation revealed the unique types of implementation challenges with AI agents. Some of which include...
|
30 |
+
|
31 |
+
* Cost
|
32 |
+
* Response Times
|
33 |
+
* Reliability
|
34 |
+
|
35 |
+
Beyond what looks like a smolagents guided tour, you can find the following in this repo...
|
36 |
+
|
37 |
+
* Research agent armed with Google search via [Serper](https://serper.dev/) and both Audo and Video Understanding via [Gemini] (https://ai.google.dev/gemini-api/docs/)video-understanding#python)
|
38 |
+
* Chess agent leveraging my [board_to_fen](https://github.com/civerson/board_to_fen) fork and a Stockfish API.
|
39 |
+
* [Langfuse](https://langfuse.com/) setup boilerplate, a working example. This is an absolute must.
|
40 |
+
* [Pydantic](https://docs.pydantic.dev/latest/) settings for type safety, centralized, and encapsulated config.
|
41 |
+
* Basic parallel agent task execution, compatible with [Gradio](https://www.gradio.app/), no extra abstractions.
|
42 |
|
43 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|