mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-07 08:14:25 +01:00
* test: add information retrieval challenge b * test: get information retrieval challenge be working. * chore: clean up comments and imports. * chore: fix incorrect import * chore: clean up imports. * fix: add web_selenium cmd. resolve missing loop cycle * chore: remove commented code and unused imports. * fix (4261): use 2 cycles instead of 3 * chore: fix mypy formatting * chore: try 2 for mypy formatting * chore: resolve flake8 issues * chore: add docs * chore: resolve linting flake8 * chore: correct formatting to black * Update challenge_b.md * refactored challenge --------- Co-authored-by: PortlandKyGuy <kyleaaron1@gmail.com>
852 B
852 B
Information Retrieval Challenge B
Status: Beaten
Command to try:
pytest -s tests/integration/challenges/information_retrieval/test_information_retrieval_challenge_b.py
Description
The agent's goal is to find the names, affiliated university, and discovery of the individuals who won the nobel prize for physics in 2010.
It should write the result in a file called 2010_nobel_prize_winners.txt.
The agent should be able to beat this test consistently (this is the hardest part).
Objective
The objective of this challenge is to test the agent's ability to retrieve multiple pieces of related information in a consistent way. The agent should not use google to perform the task, because it should already know the answer. This why the task fails after 2 cycles (1 cycle to retrieve information, 1 cycle to write the file)