Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -12,7 +12,7 @@ hf_oauth_expiration_minutes: 480
|
|
12 |
short_description: Agent for GAIA Evaluation
|
13 |
---
|
14 |
|
15 |
-
# π§
|
16 |
|
17 |
This project contains a Gemini-powered CodeAgent built with [smolagents](https://github.com/smol-ai/smol-agents) for use
|
18 |
in the **GAIA Unit 4 Evaluation** on [Hugging Face Spaces](https://hf.co/learn/agents-course/unit0/introduction).
|
@@ -23,11 +23,11 @@ in the **GAIA Unit 4 Evaluation** on [Hugging Face Spaces](https://hf.co/learn/a
|
|
23 |
```
|
24 |
Template Final Assignment_app/
|
25 |
β
|
26 |
-
βββ app.py # Main
|
27 |
-
βββ gaia_tools #
|
28 |
βββ .env.template # Environment variables template /Template file showing expected environment variables (e.g., API keys).
|
29 |
-
βββ requirements.txt # Python dependencies
|
30 |
-
βββ README.md # Project overview, setup instructions, usage examples
|
31 |
```
|
32 |
|
33 |
|
@@ -77,7 +77,15 @@ Or launch directly via [Hugging Face Spaces](https://huggingface.co/spaces/).
|
|
77 |
3. The agent will fetch tasks, solve them, and submit results
|
78 |
|
79 |
|
|
|
|
|
|
|
|
|
80 |
|
|
|
|
|
|
|
|
|
81 |
|
82 |
|
83 |
|
|
|
12 |
short_description: Agent for GAIA Evaluation
|
13 |
---
|
14 |
|
15 |
+
# π§ Agent for GAIA Evaluation
|
16 |
|
17 |
This project contains a Gemini-powered CodeAgent built with [smolagents](https://github.com/smol-ai/smol-agents) for use
|
18 |
in the **GAIA Unit 4 Evaluation** on [Hugging Face Spaces](https://hf.co/learn/agents-course/unit0/introduction).
|
|
|
23 |
```
|
24 |
Template Final Assignment_app/
|
25 |
β
|
26 |
+
βββ app.py # Main app with Gradio UI and agent execution logic.
|
27 |
+
βββ gaia_tools # Custom tools including RunPythonFileTool and download_server.
|
28 |
βββ .env.template # Environment variables template /Template file showing expected environment variables (e.g., API keys).
|
29 |
+
βββ requirements.txt # Python dependencies.
|
30 |
+
βββ README.md # Project overview, setup instructions, usage examples.
|
31 |
```
|
32 |
|
33 |
|
|
|
77 |
3. The agent will fetch tasks, solve them, and submit results
|
78 |
|
79 |
|
80 |
+
---
|
81 |
+
## π€ Contributing
|
82 |
+
|
83 |
+
We welcome contributions to improve GalaGuide!
|
84 |
|
85 |
+
1. Fork the repository
|
86 |
+
2. Create a new branch:
|
87 |
+
```bash
|
88 |
+
git checkout -b feature-xyz
|
89 |
|
90 |
|
91 |
|