Spaces:
Runtime error
Runtime error
Yago Bolivar commited on
Commit ·
f32f5e4
1
Parent(s): 86c054e
feat: update TODO and notes documentation with additional tools and data structure details
Browse files
TODO.md
CHANGED
|
@@ -1,12 +1,21 @@
|
|
| 1 |
-
|
| 2 |
-
-
|
| 3 |
-
-
|
| 4 |
-
-
|
| 5 |
-
-
|
|
|
|
|
|
|
|
|
|
| 6 |
- develop agent
|
| 7 |
-
-
|
| 8 |
- how will I test the agent. Checkout [testing_recipe.md](docs/testing_recipe.md)
|
| 9 |
- check gpt4 all as test model
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
x For Spreadsheet Files (.xlsx): A spreadsheet parsing tool (like the pandas library).
|
| 11 |
x For Audio Files (.mp3): A speech-to-text tool. -> speech_to_text.py
|
| 12 |
x check chess tool
|
|
|
|
| 1 |
+
x Web Browsing Tool: For retrieving information from online sources.
|
| 2 |
+
- Video Processing Tool: For analyzing video content.
|
| 3 |
+
- Text Reversal Tool: For reversing or processing reversed text.
|
| 4 |
+
- Chess Analysis Tool: For analyzing chess positions and suggesting moves.
|
| 5 |
+
- Web Scraping Tool: For extracting specific data from web pages.
|
| 6 |
+
- Markdown Table Parser: For analyzing markdown tables.
|
| 7 |
+
- check all tools are added to app.py
|
| 8 |
+
- get GAIA answers specification
|
| 9 |
- develop agent
|
| 10 |
+
- how to set up my app.py for tests
|
| 11 |
- how will I test the agent. Checkout [testing_recipe.md](docs/testing_recipe.md)
|
| 12 |
- check gpt4 all as test model
|
| 13 |
+
BONUS:
|
| 14 |
+
- web scrapping tool: For extracting specific data from web pages.
|
| 15 |
+
x fix broken build
|
| 16 |
+
x find out correct python version of HF Spaces
|
| 17 |
+
x For Python Code Files (.py): A safe code interpreter that can execute code in a sandboxed environment.
|
| 18 |
+
x define the rest of the tools
|
| 19 |
x For Spreadsheet Files (.xlsx): A spreadsheet parsing tool (like the pandas library).
|
| 20 |
x For Audio Files (.mp3): A speech-to-text tool. -> speech_to_text.py
|
| 21 |
x check chess tool
|
notes.md
CHANGED
|
@@ -16,6 +16,13 @@
|
|
| 16 |
- file_processing.py: file processing tool
|
| 17 |
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
## docs/ Project documentation:
|
| 20 |
- project_overview.md: overview of the project
|
| 21 |
- API.md: API documentation
|
|
@@ -32,5 +39,9 @@
|
|
| 32 |
- validation.json: JSON file with the validation set from GAIA
|
| 33 |
- common_questions.json: JSON file with the common questions between validation.json and gaia_questions.json, including the answers
|
| 34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
## answers/ agent's answers
|
| 36 |
- agent_answers.json: JSON file with the agent's answers
|
|
|
|
| 16 |
- file_processing.py: file processing tool
|
| 17 |
|
| 18 |
|
| 19 |
+
## data
|
| 20 |
+
- /downloaded_files/: folder with the 5 question's files
|
| 21 |
+
- /question_set/: files with the different jsons
|
| 22 |
+
- gaia_questions.json and new_gaia_questions.json: 20 original questions
|
| 23 |
+
- validation.json: full GAIA validation set
|
| 24 |
+
- common_questions.json: gaia_questions with the answers from validation.json
|
| 25 |
+
|
| 26 |
## docs/ Project documentation:
|
| 27 |
- project_overview.md: overview of the project
|
| 28 |
- API.md: API documentation
|
|
|
|
| 39 |
- validation.json: JSON file with the validation set from GAIA
|
| 40 |
- common_questions.json: JSON file with the common questions between validation.json and gaia_questions.json, including the answers
|
| 41 |
|
| 42 |
+
## tests/
|
| 43 |
+
- conftest.py: tests configuration
|
| 44 |
+
- different test for the different tools
|
| 45 |
+
|
| 46 |
## answers/ agent's answers
|
| 47 |
- agent_answers.json: JSON file with the agent's answers
|