dlaima commited on
Commit
30f65f8
Β·
verified Β·
1 Parent(s): 8b88400

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -5
README.md CHANGED
@@ -12,7 +12,7 @@ hf_oauth_expiration_minutes: 480
12
  short_description: Agent for GAIA Evaluation
13
  ---
14
 
15
- # 🧠 Gemini 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,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 launcher script that initializes and runs the Gradio app.
27
- β”œβ”€β”€ gaia_tools # JSON config for defining tools and metadata used by a custom agent.
28
  β”œβ”€β”€ .env.template # Environment variables template /Template file showing expected environment variables (e.g., API keys).
29
- β”œβ”€β”€ requirements.txt # Python dependencies / List of Python dependencies to install
30
- └── README.md # Project overview, setup instructions, usage examples, and screenshot link.
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