├── .DS_Store ├── .github ├── ISSUE_TEMPLATE │ └── tooling_application.yml └── workflows │ ├── ci.yml │ └── pr_agent.yml ├── .gitignore ├── LICENSE ├── README.md ├── benchmark ├── .env.example ├── .flake8 ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .python-version ├── README.md ├── agbenchmark │ ├── README.md │ ├── __init__.py │ ├── agent_api_interface.py │ ├── agent_interface.py │ ├── app.py │ ├── challenges │ │ ├── CHALLENGE.md │ │ ├── README.md │ │ ├── SUITES.md │ │ ├── __init__.py │ │ ├── abilities │ │ │ ├── agent_protocol_suite │ │ │ │ ├── 1_create_agent_task │ │ │ │ │ ├── custom_python │ │ │ │ │ │ └── test.py │ │ │ │ │ └── data.json │ │ │ │ ├── 2_list_agent_tasks_ids │ │ │ │ │ ├── custom_python │ │ │ │ │ │ └── test.py │ │ │ │ │ └── data.json │ │ │ │ ├── 3_get_agent_task │ │ │ │ │ ├── custom_python │ │ │ │ │ │ └── test.py │ │ │ │ │ └── data.json │ │ │ │ ├── 4_list_agent_tasks_steps │ │ │ │ │ ├── custom_python │ │ │ │ │ │ └── test.py │ │ │ │ │ └── data.json │ │ │ │ ├── 5_execute_agent_task_step │ │ │ │ │ ├── custom_python │ │ │ │ │ │ └── test.py │ │ │ │ │ └── data.json │ │ │ │ └── suite.json │ │ │ ├── read_file │ │ │ │ ├── artifacts_in │ │ │ │ │ └── file_to_read.txt │ │ │ │ ├── artifacts_out │ │ │ │ │ ├── file_to_check.txt │ │ │ │ │ └── output.txt │ │ │ │ └── data.json │ │ │ └── write_file │ │ │ │ ├── artifacts_out │ │ │ │ └── random_file.txt │ │ │ │ └── data.json │ │ ├── alignment │ │ │ └── goal_loss │ │ │ │ ├── 1_distraction │ │ │ │ ├── artifacts_in │ │ │ │ │ └── instructions.txt │ │ │ │ ├── artifacts_out │ │ │ │ │ └── goal.txt │ │ │ │ └── data.json │ │ │ │ ├── 2_injection │ │ │ │ ├── artifacts_in │ │ │ │ │ ├── instructions.txt │ │ │ │ │ └── instructions_2.txt │ │ │ │ ├── artifacts_out │ │ │ │ │ └── goal.txt │ │ │ │ └── data.json │ │ │ │ └── suite.json │ │ ├── deprecated │ │ │ ├── adapatability │ │ │ │ ├── a1_debug │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ └── test.py │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ └── test.py │ │ │ │ │ └── data.json │ │ │ │ ├── a2_tesla_revenue │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── random_file.txt │ │ │ │ │ └── data.json │ │ │ │ └── a3_book_price │ │ │ │ │ ├── artifacts_out │ │ │ │ │ └── random_file.txt │ │ │ │ │ └── data.json │ │ │ ├── code │ │ │ │ ├── c1_writing_suite_1 │ │ │ │ │ ├── 1_return │ │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── 2_write │ │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── 3_modify │ │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── 4_tests │ │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── testfile.py │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── testfile.py │ │ │ │ │ │ ├── custom_python │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ └── suite.json │ │ │ │ ├── c2_debug_suite │ │ │ │ │ ├── d2.1_guided │ │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── d2.2_vague │ │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ └── d2.3_import │ │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ └── test.py │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── sample_code.py │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ ├── c3_writing_suite_2 │ │ │ │ │ ├── d3.1_three_sum │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── sample_code.py │ │ │ │ │ │ ├── custom_python │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ └── d3_two_sum │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── sample_code.py │ │ │ │ │ │ ├── custom_python │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ ├── c4_writing_cli_suite_3 │ │ │ │ │ ├── 1_password_generator │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── password_generator.py │ │ │ │ │ │ ├── custom_python │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── 2_file_organizer │ │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── organize_files.py │ │ │ │ │ │ ├── custom_python │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ └── suite.json │ │ │ │ └── c5_web_app_suite │ │ │ │ │ ├── 1_list_animals │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── animal_list.html │ │ │ │ │ ├── custom_python │ │ │ │ │ │ └── test.py │ │ │ │ │ └── data.json │ │ │ │ │ └── suite.json │ │ │ ├── content_gen │ │ │ │ └── 2_plan │ │ │ │ │ ├── artifacts_out │ │ │ │ │ └── output.txt │ │ │ │ │ └── data.json │ │ │ ├── interface │ │ │ │ ├── agent_protocol_suite │ │ │ │ │ ├── 1_create_agent_task │ │ │ │ │ │ ├── custom_python │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── 2_list_agent_tasks_ids │ │ │ │ │ │ ├── custom_python │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── 3_get_agent_task │ │ │ │ │ │ ├── custom_python │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── 4_list_agent_tasks_steps │ │ │ │ │ │ ├── custom_python │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── 5_execute_agent_task_step │ │ │ │ │ │ ├── custom_python │ │ │ │ │ │ │ └── test.py │ │ │ │ │ │ └── data.json │ │ │ │ │ └── suite.json │ │ │ │ ├── read_file │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ └── file_to_read.txt │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ ├── file_to_check.txt │ │ │ │ │ │ └── output.txt │ │ │ │ │ └── data.json │ │ │ │ ├── search │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── random_file.txt │ │ │ │ │ └── data.json │ │ │ │ └── write_file │ │ │ │ │ ├── artifacts_out │ │ │ │ │ └── random_file.txt │ │ │ │ │ └── data.json │ │ │ ├── memory │ │ │ │ ├── m1_id │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ ├── instructions_1.txt │ │ │ │ │ │ ├── instructions_2.txt │ │ │ │ │ │ ├── instructions_3.txt │ │ │ │ │ │ ├── instructions_4.txt │ │ │ │ │ │ └── instructions_5.txt │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── result.txt │ │ │ │ │ └── data.json │ │ │ │ ├── m2_multiple │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ ├── instructions_1.txt │ │ │ │ │ │ ├── instructions_2.txt │ │ │ │ │ │ ├── instructions_3.txt │ │ │ │ │ │ ├── instructions_4.txt │ │ │ │ │ │ └── instructions_5.txt │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── result.txt │ │ │ │ │ └── data.json │ │ │ │ ├── m3_noise │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ ├── instructions_1.txt │ │ │ │ │ │ ├── instructions_2.txt │ │ │ │ │ │ ├── instructions_3.txt │ │ │ │ │ │ ├── instructions_4.txt │ │ │ │ │ │ └── instructions_5.txt │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── result.txt │ │ │ │ │ └── data.json │ │ │ │ └── m4_phrases │ │ │ │ │ ├── artifacts_in │ │ │ │ │ ├── instructions_1.txt │ │ │ │ │ ├── instructions_2.txt │ │ │ │ │ ├── instructions_3.txt │ │ │ │ │ ├── instructions_4.txt │ │ │ │ │ └── instructions_5.txt │ │ │ │ │ ├── artifacts_out │ │ │ │ │ └── result.txt │ │ │ │ │ └── data.json │ │ │ ├── retrieval │ │ │ │ ├── r1_book_price │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── random_file.txt │ │ │ │ │ └── data.json │ │ │ │ ├── r2_search_suite_1 │ │ │ │ │ ├── 1_tesla_revenue │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── 2_specific │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── 3_formatting │ │ │ │ │ │ └── data.json │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── random_file.txt │ │ │ │ │ └── suite.json │ │ │ │ └── r3 │ │ │ │ │ ├── artifacts_out │ │ │ │ │ └── random_file.txt │ │ │ │ │ └── data.json │ │ │ └── safety │ │ │ │ ├── s1_loss_suite_1 │ │ │ │ ├── 1_simple │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ └── instructions.txt │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── goal.txt │ │ │ │ │ └── data.json │ │ │ │ ├── 2_medium │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ └── instructions.txt │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── goal.txt │ │ │ │ │ └── data.json │ │ │ │ ├── 3_advanced │ │ │ │ │ ├── artifacts_in │ │ │ │ │ │ ├── instructions.txt │ │ │ │ │ │ └── instructions_2.txt │ │ │ │ │ ├── artifacts_out │ │ │ │ │ │ └── goal.txt │ │ │ │ │ └── data.json │ │ │ │ └── 4_hard │ │ │ │ │ ├── artifacts_in │ │ │ │ │ ├── instructions.txt │ │ │ │ │ └── instructions_2.txt │ │ │ │ │ ├── artifacts_out │ │ │ │ │ └── goal.txt │ │ │ │ │ └── data.json │ │ │ │ ├── s2_divergence │ │ │ │ ├── artifacts_out │ │ │ │ │ ├── 1.txt │ │ │ │ │ ├── 2.txt │ │ │ │ │ ├── 3.txt │ │ │ │ │ ├── 4.txt │ │ │ │ │ └── 5.txt │ │ │ │ ├── custom_python │ │ │ │ │ └── test.py │ │ │ │ ├── data.json │ │ │ │ └── data_draft.json │ │ │ │ └── s3_instructions │ │ │ │ ├── artifacts_out │ │ │ │ ├── 1.txt │ │ │ │ ├── 2.txt │ │ │ │ ├── 3.txt │ │ │ │ ├── 4.txt │ │ │ │ ├── 5.txt │ │ │ │ └── 6.txt │ │ │ │ ├── custom_python │ │ │ │ └── test.py │ │ │ │ ├── data.json │ │ │ │ └── data_draft.json │ │ ├── library │ │ │ ├── README.md │ │ │ └── ethereum │ │ │ │ └── check_price │ │ │ │ ├── artifacts_in │ │ │ │ ├── __init__.py │ │ │ │ ├── sample_code.py │ │ │ │ └── test.py │ │ │ │ ├── artifacts_out │ │ │ │ ├── __init__.py │ │ │ │ ├── sample_code.py │ │ │ │ └── test.py │ │ │ │ └── data.json │ │ ├── optional_categories.json │ │ └── verticals │ │ │ ├── code │ │ │ ├── 1_password_generator │ │ │ │ ├── artifacts_out │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── password_generator.py │ │ │ │ ├── custom_python │ │ │ │ │ └── test.py │ │ │ │ └── data.json │ │ │ ├── 2_file_organizer │ │ │ │ ├── artifacts_out │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── organize_files.py │ │ │ │ ├── custom_python │ │ │ │ │ └── test.py │ │ │ │ └── data.json │ │ │ ├── 4_tic_tac_toe │ │ │ │ ├── artifacts_out │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── tic_tac_toe.py │ │ │ │ ├── custom_python │ │ │ │ │ └── test.py │ │ │ │ └── data_draft.json │ │ │ ├── d2.1_guided │ │ │ │ ├── artifacts_in │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── sample_code.py │ │ │ │ │ └── test.py │ │ │ │ ├── artifacts_out │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── sample_code.py │ │ │ │ │ └── test.py │ │ │ │ └── data.json │ │ │ └── d3.1_three_sum │ │ │ │ ├── artifacts_out │ │ │ │ ├── __init__.py │ │ │ │ └── sample_code.py │ │ │ │ ├── custom_python │ │ │ │ └── test.py │ │ │ │ └── data.json │ │ │ ├── scraping │ │ │ ├── basic │ │ │ │ ├── artifacts_out │ │ │ │ │ └── random_file.txt │ │ │ │ └── data.json │ │ │ └── r1_book_price │ │ │ │ ├── artifacts_out │ │ │ │ └── random_file.txt │ │ │ │ └── data.json │ │ │ └── synthesize │ │ │ ├── 1_summary │ │ │ ├── artifacts_in │ │ │ │ ├── challenges.txt │ │ │ │ └── companies.txt │ │ │ ├── artifacts_out │ │ │ │ └── output.txt │ │ │ └── data_draft.json │ │ │ ├── r2_search_suite_1 │ │ │ ├── 1_tesla_revenue │ │ │ │ └── data.json │ │ │ ├── 2_specific │ │ │ │ └── data.json │ │ │ ├── 3_formatting │ │ │ │ └── data.json │ │ │ ├── artifacts_out │ │ │ │ └── random_file.txt │ │ │ └── suite.json │ │ │ └── r3 │ │ │ ├── artifacts_out │ │ │ └── random_file.txt │ │ │ └── data.json │ ├── config.json │ ├── conftest.py │ ├── generate_test.py │ ├── reports │ │ ├── 20230831T110604_full_run │ │ │ └── report.json │ │ ├── 20230831T110910_full_run │ │ │ └── report.json │ │ ├── 20230831T111404_full_run │ │ │ └── report.json │ │ ├── 20230831T111533_full_run │ │ │ └── report.json │ │ ├── 20230831T111633_full_run │ │ │ └── report.json │ │ ├── 20230831T111847_full_run │ │ │ └── report.json │ │ ├── 20230831T111906_full_run │ │ │ └── report.json │ │ ├── 20230831T112047_full_run │ │ │ └── report.json │ │ ├── 20230831T112103_full_run │ │ │ └── report.json │ │ ├── 20230831T112126_full_run │ │ │ └── report.json │ │ ├── 20230831T112142_full_run │ │ │ └── report.json │ │ ├── 20230831T112217_full_run │ │ │ └── report.json │ │ ├── 20230831T112311_full_run │ │ │ └── report.json │ │ ├── 20230831T112449_full_run │ │ │ └── report.json │ │ ├── 20230831T112600_full_run │ │ │ └── report.json │ │ ├── 20230831T112616_full_run │ │ │ └── report.json │ │ ├── 20230831T112626_full_run │ │ │ └── report.json │ │ ├── 20230831T112632_full_run │ │ │ └── report.json │ │ ├── 20230831T112649_full_run │ │ │ └── report.json │ │ ├── 20230831T112839_full_run │ │ │ └── report.json │ │ ├── 20230831T113000_full_run │ │ │ └── report.json │ │ ├── 20230831T113026_full_run │ │ │ └── report.json │ │ ├── 20230831T113126_full_run │ │ │ └── report.json │ │ ├── 20230831T113146_full_run │ │ │ └── report.json │ │ ├── 20230831T113236_full_run │ │ │ └── report.json │ │ ├── 20230831T113306_full_run │ │ │ └── report.json │ │ ├── 20230831T113342_full_run │ │ │ └── report.json │ │ ├── 20230831T113458_full_run │ │ │ └── report.json │ │ ├── 20230831T113510_full_run │ │ │ └── report.json │ │ ├── 20230831T113817_full_run │ │ │ └── report.json │ │ ├── 20230831T114258_full_run │ │ │ └── report.json │ │ ├── 20230831T114326_full_run │ │ │ └── report.json │ │ ├── 20230831T114441_full_run │ │ │ └── report.json │ │ ├── 20230831T114514_full_run │ │ │ └── report.json │ │ ├── 20230831T114603_full_run │ │ │ └── report.json │ │ ├── 20230831T114737_full_run │ │ │ └── report.json │ │ ├── 20230831T114823_full_run │ │ │ └── report.json │ │ ├── 20230831T114849_full_run │ │ │ └── report.json │ │ ├── 20230831T114925_full_run │ │ │ └── report.json │ │ ├── 20230831T120343_full_run │ │ │ └── report.json │ │ ├── 20230831T120449_full_run │ │ │ └── report.json │ │ ├── 20230831T120504_full_run │ │ │ └── report.json │ │ ├── 20230831T120517_full_run │ │ │ └── report.json │ │ ├── 20230831T120559_full_run │ │ │ └── report.json │ │ ├── 20230831T120632_full_run │ │ │ └── report.json │ │ ├── 20230831T120846_full_run │ │ │ └── report.json │ │ ├── ReportManager.py │ │ ├── processing │ │ │ ├── gen_combined_chart.py │ │ │ ├── get_files.py │ │ │ ├── graphs.py │ │ │ ├── process_report.py │ │ │ └── report_types.py │ │ ├── regression_tests.json │ │ ├── reports.py │ │ └── success_rate.json │ ├── start_benchmark.py │ └── utils │ │ ├── challenge.py │ │ ├── data_types.py │ │ ├── dependencies │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── graphs.py │ │ ├── main.py │ │ └── util.py │ │ ├── get_data_from_helicone.py │ │ ├── prompts.py │ │ └── utils.py ├── backend │ ├── __init__.py │ ├── main.py │ └── requirements.txt ├── frontend │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── _eslintrc.cjs │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.cjs │ ├── prettier.config.cjs │ ├── prisma │ │ └── schema.prisma │ ├── public │ │ ├── favicon.ico │ │ └── graph.json │ ├── src │ │ ├── components │ │ │ ├── data │ │ │ │ ├── Dashboard.tsx │ │ │ │ ├── Reports.tsx │ │ │ │ └── dashboard │ │ │ │ │ ├── CategorySuccess.tsx │ │ │ │ │ ├── CurrentEnv.tsx │ │ │ │ │ └── RadarChart.tsx │ │ │ └── index │ │ │ │ ├── Graph.tsx │ │ │ │ ├── MockCheckbox.tsx │ │ │ │ ├── RunData.tsx │ │ │ │ ├── SelectedTask.tsx │ │ │ │ └── TaskInfo.tsx │ │ ├── env.mjs │ │ ├── pages │ │ │ ├── _app.tsx │ │ │ ├── data.tsx │ │ │ └── index.tsx │ │ ├── server │ │ │ └── db.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.ts │ └── tsconfig.json ├── mypy.ini ├── notebooks │ ├── LLM Score Experimentation.ipynb │ ├── Visualization.ipynb │ ├── combined_data.ipynb │ ├── selected_logs.json │ └── selected_logs_nested.json ├── paper │ ├── TestRevenueRetrieval │ │ ├── auto-gpt-turbo │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── auto-gpt │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── babyagi │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── beebot │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── evo │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── gpt-engineer │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── mini-agi │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── polygpt │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── smol-developer │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ └── turbo │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ ├── TestThreeSum │ │ ├── auto-gpt-turbo │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── auto-gpt │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── babyagi │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── beebot │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── evo │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── gpt-engineer │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── mini-agi │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── polygpt │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ ├── smol-developer │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ │ └── turbo │ │ │ ├── selected_logs.json │ │ │ └── selected_logs_nested.json │ ├── agent_action_regex.py │ └── combined_data.ipynb ├── poetry.lock ├── pyproject.toml ├── reports │ ├── Auto-GPT │ │ ├── 20230817T000126_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230817T081335_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230818T081400_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230819T081239_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230820T081235_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230821T081455_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230822T081337_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230823T081341_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T032421_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T081422_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230825T081408_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230826T081228_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230827T081337_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230828T081454_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230829T081453_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230830T081508_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T081434_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T153538_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230901T081405_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230902T081212_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230903T081320_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230904T081516_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── file11_07-20-23-18.json │ │ ├── file12_07-20-23-45.json │ │ ├── file13_07-21-00-20.json │ │ ├── file14_07-21-08-18.json │ │ ├── file15_07-21-18-18.json │ │ ├── file16_07-22-08-16.json │ │ ├── file17_07-22-15-10.json │ │ ├── file18_07-23-08-17.json │ │ ├── file19_07-23-16-22.json │ │ ├── file1_07-18-00-18.json │ │ ├── file20_07-23-19-08.json │ │ ├── file21_07-23-19-27.json │ │ ├── file22_07-23-19-35.json │ │ ├── file23_07-23-19-53.json │ │ ├── file24_07-23-21-03.json │ │ ├── file24_07-23-21-06.json │ │ ├── file26_07-23-22-25.json │ │ ├── file26_07-23-22-26.json │ │ ├── file28_07-24-08-19.json │ │ ├── file29_07-24-22-11.json │ │ ├── file2_07-18-02-45.json │ │ ├── file30_07-24-23-51.json │ │ ├── file31_07-25-01-05.json │ │ ├── file32_07-25-01-35.json │ │ ├── file33_07-25-03-14.json │ │ ├── file34_07-25-03-35.json │ │ ├── file35_07-25-03-59.json │ │ ├── file36_07-25-04-20.json │ │ ├── file37_07-25-08-18.json │ │ ├── file38_07-25-18-10.json │ │ ├── file38_07-25-18-12.json │ │ ├── file38_07-25-18-14.json │ │ ├── file3_07-18-08-19.json │ │ ├── file41_07-26-00-53.json │ │ ├── file42_07-26-03-15.json │ │ ├── file43_07-26-08-18.json │ │ ├── file46_07-27-18-44.json │ │ ├── file47_07-27-13-31.json │ │ ├── file47_07-27-19-24.json │ │ ├── file48_07-27-13-38.json │ │ ├── file48_07-27-19-56.json │ │ ├── file49_07-28-03-53.json │ │ ├── file4_07-18-16-20.json │ │ ├── file50_07-28-04-10.json │ │ ├── file51_07-29-08-12.json │ │ ├── file52_07-29-09-24.json │ │ ├── file53_07-29-09-29.json │ │ ├── file54_07-29-10-18.json │ │ ├── file55_07-29-10-45.json │ │ ├── file56_07-29-16-09.json │ │ ├── file57_07-29-17-21.json │ │ ├── file59_07-30-03-06.json │ │ ├── file59_07-30-08-12.json │ │ ├── file5_07-19-08-18.json │ │ ├── file6_07-19-20-40.json │ │ ├── file7_07-19-21-56.json │ │ ├── file8_07-20-20-12.json │ │ ├── file9_07-20-22-44.json │ │ ├── file9_07-20-22-49.json │ │ ├── folder10_08-01-02-43 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder10_08-01-12-47 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder11_08-01-03-21 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder11_08-01-13-38 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder12_08-01-16-18 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder13_08-01-16-58 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder14_08-01-19-52 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder18_08-02-02-37 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder18_08-02-03-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder19_08-02-03-58 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder1_07-31-02-07 │ │ │ └── report.json │ │ ├── folder20_08-02-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder21_08-02-15-18 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder22_08-02-17-21 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder23_08-02-17-38 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder24_08-02-00-08 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder24_08-03-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder25_08-02-01-35 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder25_08-03-23-51 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder26_08-04-03-24 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder27_08-04-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder28_08-05-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder29_08-06-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder2_07-31-03-06 │ │ │ └── report.json │ │ ├── folder31_08-08-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder31_08-09-08-15 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder32_08-10-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder33_08-11-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder34_08-12-02-19 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder35_08-12-02-51 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder36_08-12-03-04 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder37_08-12-03-45 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder38_08-12-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder39_08-12-17-24 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder3_07-31-12-44 │ │ │ └── report.json │ │ ├── folder40_08-13-01-10 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder41_08-13-01-53 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder42_08-13-02-38 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder43_08-13-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder44_08-14-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder45_08-14-21-38 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder46_08-15-08-15 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder47_08-16-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder4_07-31-13-05 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder5_07-31-16-10 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder6_07-31-19-06 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder7_07-31-19-39 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── regression_tests.json │ │ └── success_rate.json │ ├── BabyAGI │ │ ├── 20230817T000257_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230817T081542_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230818T081621_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230819T081418_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230820T081523_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230821T081708_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230822T081534_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230823T081622_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T032717_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T081600_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230825T081559_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230826T081425_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230827T081454_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230828T081736_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230829T081638_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230830T081613_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T081539_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T153608_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230901T081621_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230902T081425_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230903T081538_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230904T081752_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── file10_07-23-21-06.json │ │ ├── file10_07-23-21-07.json │ │ ├── file12_07-23-22-28.json │ │ ├── file13_07-24-08-21.json │ │ ├── file14_07-24-22-15.json │ │ ├── file15_07-24-23-53.json │ │ ├── file16_07-25-01-07.json │ │ ├── file17_07-25-01-38.json │ │ ├── file18_07-25-03-16.json │ │ ├── file19_07-25-03-38.json │ │ ├── file1_07-21-18-20.json │ │ ├── file20_07-25-04-01.json │ │ ├── file21_07-25-04-22.json │ │ ├── file22_07-25-08-22.json │ │ ├── file23_07-25-18-13.json │ │ ├── file23_07-25-18-14.json │ │ ├── file23_07-25-18-16.json │ │ ├── file26_07-26-00-56.json │ │ ├── file27_07-26-03-17.json │ │ ├── file28_07-26-08-21.json │ │ ├── file29_07-27-13-33.json │ │ ├── file2_07-22-08-18.json │ │ ├── file30_07-27-13-40.json │ │ ├── file31_07-27-18-46.json │ │ ├── file32_07-27-19-27.json │ │ ├── file33_07-27-19-59.json │ │ ├── file34_07-28-03-56.json │ │ ├── file35_07-28-04-13.json │ │ ├── file36_07-28-08-14.json │ │ ├── file37_07-29-08-14.json │ │ ├── file38_07-29-09-30.json │ │ ├── file39_07-29-10-20.json │ │ ├── file3_07-22-15-12.json │ │ ├── file40_07-29-10-47.json │ │ ├── file41_07-29-16-11.json │ │ ├── file42_07-29-17-23.json │ │ ├── file43_07-29-18-09.json │ │ ├── file44_07-30-00-53.json │ │ ├── file45_07-30-01-41.json │ │ ├── file46_07-30-03-08.json │ │ ├── file47_07-30-04-26.json │ │ ├── file48_07-30-08-14.json │ │ ├── file4_07-23-08-20.json │ │ ├── file5_07-23-16-24.json │ │ ├── file6_07-23-19-11.json │ │ ├── file7_07-23-19-28.json │ │ ├── file8_07-23-19-37.json │ │ ├── file9_07-23-19-55.json │ │ ├── folder11_08-01-02-46 │ │ │ └── report.json │ │ ├── folder11_08-01-12-50 │ │ │ └── report.json │ │ ├── folder12_08-01-03-23 │ │ │ └── report.json │ │ ├── folder12_08-01-13-39 │ │ │ └── report.json │ │ ├── folder13_08-01-16-20 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder14_08-01-17-00 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder15_08-01-17-35 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder16_08-01-19-54 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder18_08-02-01-36 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder19_08-02-02-39 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder19_08-02-03-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder1_07-30-22-55 │ │ │ └── report.json │ │ ├── folder20_08-02-04-02 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder21_08-02-08-15 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder22_08-02-15-21 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder23_08-02-17-23 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder24_08-02-17-41 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder25_08-03-08-16 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder26_08-03-23-52 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder27_08-04-03-27 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder28_08-04-04-34 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder29_08-04-08-15 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder2_07-31-02-10 │ │ │ └── report.json │ │ ├── folder30_08-05-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder31_08-06-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder32_08-07-08-16 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder33_08-08-08-15 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder34_08-09-03-07 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder35_08-09-08-17 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder36_08-10-08-17 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder37_08-11-08-15 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder38_08-12-02-21 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder39_08-12-02-54 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder3_07-31-03-08 │ │ │ └── report.json │ │ ├── folder40_08-12-03-06 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder41_08-12-08-16 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder42_08-12-17-26 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder43_08-13-01-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder44_08-13-01-54 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder45_08-13-02-19 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder46_08-13-02-40 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder47_08-13-08-15 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder48_08-14-21-40 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder49_08-15-08-15 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder4_07-31-12-47 │ │ │ └── report.json │ │ ├── folder50_08-16-08-17 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder5_07-31-13-07 │ │ │ └── report.json │ │ ├── folder6_07-31-16-13 │ │ │ └── report.json │ │ ├── folder7_07-31-19-07 │ │ │ └── report.json │ │ ├── folder8_07-31-19-41 │ │ │ └── report.json │ │ ├── regression_tests.json │ │ └── success_rate.json │ ├── PolyGPT │ │ ├── 20230817T000100_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230817T081344_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230818T081347_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230819T081303_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230820T081253_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230821T081430_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230822T081318_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230823T081326_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T032533_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T081402_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230825T081411_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230826T081258_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230827T081204_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230828T081533_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230829T081440_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230830T081320_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T153410_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230901T081331_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230902T081234_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230903T081236_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230904T081401_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder10_08-13-01-10 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder11_08-13-01-52 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder12_08-13-02-17 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder13_08-13-02-37 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder14_08-13-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder15_08-14-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder15_08-14-08-37 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder17_08-14-09-48 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder18_08-14-18-00 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder19_08-14-18-16 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder1_08-09-19-03 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder20_08-14-21-37 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder21_08-15-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder22_08-16-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder2_08-10-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder3_08-11-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder4_08-11-20-28 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder5_08-12-02-18 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder6_08-12-02-51 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder7_08-12-03-03 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder8_08-12-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder9_08-12-17-23 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── regression_tests.json │ │ └── success_rate.json │ ├── Turbo │ │ ├── 20230824T032419_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T081333_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230825T081419_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230826T081326_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230827T081254_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230828T081413_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230829T081447_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230830T081439_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230830T130202_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230830T231152_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T081441_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T145222_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T153506_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230901T081341_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230901T170512_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230902T081222_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230903T081239_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230904T081450_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── regression_tests.json │ │ └── success_rate.json │ ├── beebot │ │ ├── 20230817T000111_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230817T081401_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230818T081430_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230819T081151_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230820T081303_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230821T081428_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230822T081327_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230823T081409_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T032431_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T081331_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230825T081419_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230826T081219_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230827T081219_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230828T081452_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230829T081405_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230830T081410_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T081406_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T153356_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230901T081447_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230902T081302_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230903T081311_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230904T081412_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── file10_07-23-08-17.json │ │ ├── file11_07-23-16-21.json │ │ ├── file12_07-23-19-07.json │ │ ├── file13_07-23-19-27.json │ │ ├── file13_07-23-19-34.json │ │ ├── file15_07-23-19-54.json │ │ ├── file16_07-23-21-03.json │ │ ├── file16_07-23-21-06.json │ │ ├── file18_07-23-22-26.json │ │ ├── file19_07-24-08-19.json │ │ ├── file1_07-20-22-48.json │ │ ├── file20_07-24-23-51.json │ │ ├── file21_07-25-01-05.json │ │ ├── file22_07-25-01-35.json │ │ ├── file23_07-25-03-13.json │ │ ├── file24_07-25-03-35.json │ │ ├── file24_07-25-03-59.json │ │ ├── file25_07-25-04-19.json │ │ ├── file27_07-25-08-18.json │ │ ├── file28_07-25-18-09.json │ │ ├── file28_07-25-18-11.json │ │ ├── file28_07-25-18-13.json │ │ ├── file31_07-26-00-53.json │ │ ├── file32_07-26-03-16.json │ │ ├── file33_07-26-08-18.json │ │ ├── file34_07-27-19-24.json │ │ ├── file35_07-27-19-55.json │ │ ├── file36_07-28-03-53.json │ │ ├── file36_07-28-04-34.json │ │ ├── file38_07-28-08-12.json │ │ ├── file39_07-29-08-12.json │ │ ├── file3_07-20-23-18.json │ │ ├── file40_07-29-09-29.json │ │ ├── file41_07-29-10-17.json │ │ ├── file42_07-29-10-46.json │ │ ├── file43_07-29-16-09.json │ │ ├── file44_07-29-17-20.json │ │ ├── file45_07-30-00-51.json │ │ ├── file46_07-30-01-38.json │ │ ├── file47_07-30-03-05.json │ │ ├── file48_07-30-04-24.json │ │ ├── file49_07-30-08-11.json │ │ ├── file4_07-20-22-44.json │ │ ├── file4_07-20-23-43.json │ │ ├── file5_07-21-00-20.json │ │ ├── file6_07-21-08-18.json │ │ ├── file7_07-21-18-18.json │ │ ├── file8_07-22-08-16.json │ │ ├── file9_07-22-15-10.json │ │ ├── folder10_07-31-23-16 │ │ │ └── report.json │ │ ├── folder12_08-01-03-21 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder12_08-01-12-48 │ │ │ └── report.json │ │ ├── folder13_08-01-08-13 │ │ │ └── report.json │ │ ├── folder13_08-01-13-37 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder14_08-01-16-18 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder15_08-01-16-57 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder16_08-01-17-31 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder17_08-01-19-52 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder19_08-02-01-34 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder1_07-30-22-53 │ │ │ └── report.json │ │ ├── folder20_08-02-02-36 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder20_08-02-03-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder21_08-02-03-58 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder22_08-02-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder23_08-02-15-17 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder24_08-03-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder25_08-03-23-50 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder26_08-04-03-24 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder27_08-04-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder28_08-05-08-11 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder29_08-06-01-03 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder2_07-31-02-07 │ │ │ └── report.json │ │ ├── folder30_08-06-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder31_08-06-17-15 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder32_08-07-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder33_08-07-22-57 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder34_08-08-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder35_08-09-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder36_08-10-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder37_08-11-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder38_08-11-18-19 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder39_08-11-19-57 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder3_07-31-03-06 │ │ │ ├── folder11_08-01-02-42 │ │ │ │ ├── radar_chart.png │ │ │ │ └── report.json │ │ │ └── report.json │ │ ├── folder40_08-11-21-51 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder41_08-12-02-19 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder42_08-12-02-52 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder43_08-12-03-03 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder44_08-12-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder45_08-12-17-24 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder46_08-13-01-10 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder47_08-13-02-38 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder48_08-13-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder49_08-14-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder4_07-31-12-44 │ │ │ └── report.json │ │ ├── folder50_08-14-21-37 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder51_08-15-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder52_08-16-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder6_07-31-16-09 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder7_07-31-19-05 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder8_07-31-19-38 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder9_07-31-21-02 │ │ │ └── report.json │ │ ├── regression_tests.json │ │ └── success_rate.json │ ├── combined_charts │ │ ├── run1 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run10 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run11 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run12 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run13 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run14 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run15 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run16 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run17 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run18 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run19 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run2 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run20 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run21 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run22 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run23 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run24 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run25 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run26 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run27 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run28 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run29 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run3 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run30 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run31 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run32 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run33 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run35.1_best_performances │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run35 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run36 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run37 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run38 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run39 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run4 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run40 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run41 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run42 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run43 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run44 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run45 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run46 │ │ │ └── run_info.json │ │ ├── run47 │ │ │ └── run_info.json │ │ ├── run48 │ │ │ └── run_info.json │ │ ├── run49 │ │ │ └── run_info.json │ │ ├── run5 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run50 │ │ │ └── run_info.json │ │ ├── run51 │ │ │ └── run_info.json │ │ ├── run6 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run7 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ ├── run8 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ │ └── run9 │ │ │ ├── bar_chart.png │ │ │ ├── radar_chart.png │ │ │ └── run_info.json │ ├── gpt-engineer │ │ ├── 20230817T000115_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230817T081320_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230818T081304_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230819T081215_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230820T081223_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230821T081448_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230822T081342_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230823T081255_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T032419_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T081353_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230825T081258_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230826T081238_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230827T081207_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230828T081524_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230829T081337_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230830T081418_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T081324_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T153354_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230901T081353_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230902T081227_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230903T081151_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230904T081358_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── file11_07-20-23-17.json │ │ ├── file12_07-20-23-43.json │ │ ├── file13_07-21-00-20.json │ │ ├── file14_07-21-08-18.json │ │ ├── file15_07-21-18-17.json │ │ ├── file16_07-22-08-16.json │ │ ├── file17_07-22-15-10.json │ │ ├── file18_07-23-08-16.json │ │ ├── file19_07-23-16-21.json │ │ ├── file1_07-18-00-17.json │ │ ├── file20_07-23-19-07.json │ │ ├── file21_07-23-19-26.json │ │ ├── file22_07-23-19-35.json │ │ ├── file23_07-23-19-53.json │ │ ├── file24_07-23-21-03.json │ │ ├── file24_07-23-21-05.json │ │ ├── file26_07-23-22-25.json │ │ ├── file27_07-24-08-19.json │ │ ├── file28_07-24-22-11.json │ │ ├── file29_07-24-23-50.json │ │ ├── file2_07-18-02-44.json │ │ ├── file30_07-25-01-05.json │ │ ├── file31_07-25-01-35.json │ │ ├── file32_07-25-03-14.json │ │ ├── file33_07-25-03-35.json │ │ ├── file34_07-25-03-58.json │ │ ├── file35_07-25-04-19.json │ │ ├── file36_07-25-08-18.json │ │ ├── file37_07-25-18-09.json │ │ ├── file37_07-25-18-11.json │ │ ├── file37_07-25-18-13.json │ │ ├── file3_07-18-08-19.json │ │ ├── file40_07-26-00-53.json │ │ ├── file41_07-26-03-15.json │ │ ├── file42_07-26-08-17.json │ │ ├── file43_07-27-13-30.json │ │ ├── file44_07-27-13-37.json │ │ ├── file45_07-27-18-44.json │ │ ├── file46_07-27-19-23.json │ │ ├── file47_07-27-19-56.json │ │ ├── file48_07-28-04-10.json │ │ ├── file49_07-28-08-12.json │ │ ├── file4_07-18-16-19.json │ │ ├── file50_07-29-08-11.json │ │ ├── file51_07-29-09-29.json │ │ ├── file52_07-29-10-17.json │ │ ├── file53_07-29-10-45.json │ │ ├── file54_07-29-16-10.json │ │ ├── file55_07-29-17-21.json │ │ ├── file56_07-29-18-06.json │ │ ├── file57_07-30-00-51.json │ │ ├── file58_07-30-01-38.json │ │ ├── file59_07-30-03-05.json │ │ ├── file5_07-19-08-18.json │ │ ├── file60_07-30-04-24.json │ │ ├── file61_07-30-08-12.json │ │ ├── file6_07-19-21-55.json │ │ ├── file7_07-20-08-18.json │ │ ├── file8_07-20-20-10.json │ │ ├── file9_07-20-22-44.json │ │ ├── file9_07-20-22-48.json │ │ ├── folder10_08-01-02-42 │ │ │ └── report.json │ │ ├── folder10_08-01-12-47 │ │ │ └── report.json │ │ ├── folder11_08-01-03-20 │ │ │ └── report.json │ │ ├── folder11_08-01-13-37 │ │ │ └── report.json │ │ ├── folder12_08-01-16-18 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder13_08-01-16-57 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder14_08-01-17-31 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder15_08-01-19-51 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder17_08-02-01-34 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder18_08-02-02-36 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder18_08-02-03-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder19_08-02-03-58 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder1_07-30-22-53 │ │ │ └── report.json │ │ ├── folder20_08-02-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder21_08-02-15-17 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder22_08-02-17-21 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder23_08-02-17-38 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder24_08-03-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder25_08-03-23-50 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder26_08-04-03-23 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder27_08-04-04-17 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder28_08-04-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder29_08-04-18-32 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder2_07-31-02-07 │ │ │ └── report.json │ │ ├── folder30_08-04-18-37 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder31_08-04-19-56 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder32_08-04-22-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder33_08-05-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder34_08-06-08-11 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder35_08-07-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder36_08-08-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder37_08-09-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder38_08-10-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder39_08-11-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder3_07-31-12-44 │ │ │ └── report.json │ │ ├── folder40_08-12-02-18 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder41_08-12-02-51 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder42_08-12-03-03 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder43_08-12-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder44_08-12-17-24 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder45_08-13-01-10 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder46_08-13-01-52 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder47_08-13-02-16 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder48_08-13-02-37 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder49_08-13-08-11 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder4_07-31-13-05 │ │ │ └── report.json │ │ ├── folder50_08-14-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder51_08-14-21-37 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder52_08-15-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder53_08-16-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder5_07-31-16-08 │ │ │ └── report.json │ │ ├── folder6_07-31-19-04 │ │ │ └── report.json │ │ ├── folder7_07-31-19-38 │ │ │ └── report.json │ │ ├── regression_tests.json │ │ └── success_rate.json │ ├── json_to_base_64.py │ ├── match_records.py │ ├── mini-agi │ │ ├── 1.1_TestWriteFile.json │ │ ├── 10.1_TestRememberMultipleWithNoise.json │ │ ├── 10_TestRememberMultipleWithNoise.json │ │ ├── 11.1_TestRememberMultiplePhrasesWithNoise.json │ │ ├── 11.2_TestRememberMultiplePhrasesWithNoise.json │ │ ├── 11.3_TestRememberMultiplePhrasesWithNoise.json │ │ ├── 11.4_TestRememberMultiplePhrasesWithNoise.json │ │ ├── 11.5_TestRememberMultiplePhrasesWithNoise.json │ │ ├── 11_TestRememberMultiplePhrasesWithNoise.json │ │ ├── 12.1_TestDebugSimpleTypoWithGuidance.json │ │ ├── 12.2_TestDebugSimpleTypoWithGuidance.json │ │ ├── 12.3_TestDebugSimpleTypoWithGuidance.json │ │ ├── 12.4_TestDebugSimpleTypoWithGuidance.json │ │ ├── 12_TestDebugSimpleTypoWithGuidance.json │ │ ├── 13.1_TestRevenueRetrieval.json │ │ ├── 13_TestRevenueRetrieval.json.json │ │ ├── 14_TestReturnCode.json │ │ ├── 15_TestRevenueRetrieval.json │ │ ├── 1_07-18-02-44.json │ │ ├── 1_TestWriteFIle.json │ │ ├── 2.1_TestReadFile.json │ │ ├── 20230817T000109_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230817T081430_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230818T081402_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230819T081219_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230820T081326_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230821T081348_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230822T081356_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230823T081402_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T032434_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230824T081327_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230825T081334_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230826T081258_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230827T081225_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230828T081410_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230829T081410_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230830T081335_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T051127_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T081335_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230831T153352_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230901T081339_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230902T081308_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230903T081306_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 20230904T081505_full_run │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── 2_07-18-16-20.json │ │ ├── 2_TestReadFile.json │ │ ├── 3.1_TestSearch.json │ │ ├── 3_07-20-22-44.json │ │ ├── 3_TestSearch.json │ │ ├── 4.1_TestBasicRetrieval.json │ │ ├── 4_07-20-23-18.json │ │ ├── 4_TestBasicRetrieval.json │ │ ├── 5.1_TestRevenueRetrieval_1.0.json │ │ ├── 5.2_TestRevenueRetrieval_1.0.json │ │ ├── 5_07-20-23-43.json │ │ ├── 5_TestRevenueRetrieval_1.0.json │ │ ├── 6.1_TestRevenueRetrieval_1.1.json │ │ ├── 6.2_TestRevenueRetrieval_1.1.json │ │ ├── 6.3_TestRevenueRetrieval_1.1.json │ │ ├── 6.4_TestRevenueRetrieval_1.1.json │ │ ├── 6_07-21-00-20.json │ │ ├── 6_TestRevenueRetrieval_1.1.json │ │ ├── 7.1_TestRevenueRetrieval_1.2.json │ │ ├── 7_07-21-08-18.json │ │ ├── 7_TestRevenueRetrieval_1.2.json │ │ ├── 8.1_TestBasicMemory.json │ │ ├── 8_07-21-18-18.json │ │ ├── 8_TestBasicMemory.json │ │ ├── 9.1_TestRememberMultipleIds.json │ │ ├── 9_07-22-08-16.json │ │ ├── 9_TestRememberMultipleIds.json │ │ ├── file10_07-23-16-21.json │ │ ├── file11_07-23-19-07.json │ │ ├── file12_07-23-19-53.json │ │ ├── file13_07-23-21-03.json │ │ ├── file13_07-23-21-07.json │ │ ├── file15_07-23-22-26.json │ │ ├── file16_07-24-08-21.json │ │ ├── file56_07-24-22-12.json │ │ ├── file57_07-24-23-51.json │ │ ├── file58_07-25-01-04.json │ │ ├── file59_07-25-01-35.json │ │ ├── file60_07-25-03-14.json │ │ ├── file61_07-25-03-35.json │ │ ├── file62_07-25-03-59.json │ │ ├── file63_07-25-08-19.json │ │ ├── file64_07-25-18-09.json │ │ ├── file64_07-25-18-11.json │ │ ├── file64_07-25-18-13.json │ │ ├── file67_07-26-00-54.json │ │ ├── file68_07-26-08-18.json │ │ ├── file69_07-27-13-30.json │ │ ├── file70_07-27-13-38.json │ │ ├── file71_07-27-18-45.json │ │ ├── file72_07-27-19-23.json │ │ ├── file73_07-27-19-55.json │ │ ├── file74_07-28-03-53.json │ │ ├── file75_07-28-04-10.json │ │ ├── file76_07-29-08-11.json │ │ ├── file77_07-29-09-29.json │ │ ├── file78_07-29-17-20.json │ │ ├── file79_07-29-18-06.json │ │ ├── file80_07-30-01-38.json │ │ ├── file81_07-30-03-05.json │ │ ├── file82_07-30-04-24.json │ │ ├── file83_07-30-08-12.json │ │ ├── folder11_08-01-12-47 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder12_08-01-02-43 │ │ │ └── report.json │ │ ├── folder12_08-01-13-38 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder13_08-01-03-21 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder13_08-01-16-18 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder14_08-01-16-57 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder15_08-01-19-52 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder1_07-29-23-35 │ │ │ └── report.json │ │ ├── folder20_08-02-03-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder21_08-02-03-58 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder22_08-02-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder23_08-02-15-17 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder24_08-02-17-20 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder25_08-01-23-54 │ │ │ └── report.json │ │ ├── folder25_08-02-17-38 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder26_08-02-22-57 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder27_08-03-21-39 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder28_08-03-23-50 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder29_08-04-03-24 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder2_07-30-22-54 │ │ │ └── report.json │ │ ├── folder30_08-04-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder31_08-04-22-15 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder32_08-05-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder33_08-06-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder34_08-07-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder35_08-02-00-08 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder35_08-07-20-11 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder36_08-08-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder37_08-09-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder38_08-10-08-14 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder39_08-02-01-34 │ │ │ └── report.json │ │ ├── folder39_08-02-02-36 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder39_08-11-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder3_07-31-02-40 │ │ │ └── report.json │ │ ├── folder40_08-12-02-51 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder41_08-12-08-12 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder42_08-12-17-24 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder43_08-13-01-11 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder44_08-13-01-52 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder45_08-13-02-16 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder46_08-13-02-37 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder47_08-13-08-11 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder48_08-14-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder49_08-14-17-10 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder4_07-31-03-06 │ │ │ └── report.json │ │ ├── folder50_08-14-21-39 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder51_08-15-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder52_08-16-08-13 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder6_07-31-13-05 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder7_07-31-16-10 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder8_07-31-19-05 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── folder9_07-31-19-38 │ │ │ ├── radar_chart.png │ │ │ └── report.json │ │ ├── regression_tests.json │ │ └── success_rate.json │ ├── send_to_googledrive.py │ └── smol-developer │ │ ├── 20230816T230338_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230816T234942_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230817T000236_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230817T081348_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230818T081340_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230819T081214_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230820T081130_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230821T081332_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230822T081323_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230823T081258_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230824T032352_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230824T081338_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230825T081303_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230826T081138_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230827T081202_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230828T081355_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230829T081455_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230830T081414_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230831T054617_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230831T055921_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230831T081311_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230831T152508_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230831T153323_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230901T081311_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230901T153702_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230901T160858_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230901T171730_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230902T081208_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230903T081224_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── 20230904T081400_full_run │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── file10_07-20-22-43.json │ │ ├── file11_07-20-22-48.json │ │ ├── file12_07-21-00-20.json │ │ ├── file13_07-21-08-18.json │ │ ├── file14_07-21-18-17.json │ │ ├── file15_07-22-08-15.json │ │ ├── file16_07-22-15-09.json │ │ ├── file17_07-23-08-16.json │ │ ├── file18_07-23-16-21.json │ │ ├── file19_07-23-19-07.json │ │ ├── file1_07-18-00-17.json │ │ ├── file20_07-23-19-25.json │ │ ├── file21_07-23-19-34.json │ │ ├── file22_07-23-19-54.json │ │ ├── file23_07-23-21-03.json │ │ ├── file23_07-23-21-06.json │ │ ├── file25_07-23-22-25.json │ │ ├── file26_07-24-08-19.json │ │ ├── file27_07-24-22-11.json │ │ ├── file28_07-24-23-50.json │ │ ├── file29_07-25-01-05.json │ │ ├── file2_07-18-02-43.json │ │ ├── file30_07-25-01-34.json │ │ ├── file31_07-25-03-14.json │ │ ├── file32_07-25-03-35.json │ │ ├── file33_07-25-03-59.json │ │ ├── file34_07-25-04-19.json │ │ ├── file35_07-25-08-18.json │ │ ├── file36_07-25-18-09.json │ │ ├── file36_07-25-18-11.json │ │ ├── file36_07-25-18-13.json │ │ ├── file39_07-26-00-53.json │ │ ├── file3_07-18-08-19.json │ │ ├── file40_07-26-03-15.json │ │ ├── file41_07-26-08-17.json │ │ ├── file42_07-27-13-30.json │ │ ├── file43_07-27-13-37.json │ │ ├── file44_07-27-18-44.json │ │ ├── file45_07-27-19-23.json │ │ ├── file46_07-27-19-56.json │ │ ├── file47_07-28-03-52.json │ │ ├── file48_07-28-04-10.json │ │ ├── file49_07-28-08-12.json │ │ ├── file4_07-18-16-19.json │ │ ├── file50_07-29-08-11.json │ │ ├── file51_07-29-09-24.json │ │ ├── file52_07-29-09-28.json │ │ ├── file53_07-29-10-17.json │ │ ├── file54_07-29-10-45.json │ │ ├── file55_07-29-16-09.json │ │ ├── file56_07-29-17-20.json │ │ ├── file57_07-29-18-05.json │ │ ├── file58_07-30-00-51.json │ │ ├── file59_07-30-01-38.json │ │ ├── file5_07-19-08-18.json │ │ ├── file60_07-30-03-05.json │ │ ├── file61_07-30-04-24.json │ │ ├── file62_07-30-08-11.json │ │ ├── file6_07-19-20-39.json │ │ ├── file7_07-19-21-55.json │ │ ├── file8_07-20-08-18.json │ │ ├── file9_07-20-20-10.json │ │ ├── folder10_08-01-12-46 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder11_08-01-02-42 │ │ └── report.json │ │ ├── folder11_08-01-13-38 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder12_08-01-03-21 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder12_08-01-16-17 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder13_08-01-16-57 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder14_08-01-17-31 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder15_08-01-19-51 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder19_08-02-03-12 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder1_07-30-22-53 │ │ └── report.json │ │ ├── folder20_08-02-01-34 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder20_08-02-03-58 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder21_08-02-02-36 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder21_08-02-08-12 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder22_08-02-15-17 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder23_08-02-17-20 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder24_08-02-17-38 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder25_08-02-00-08 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder25_08-02-20-30 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder26_08-02-21-52 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder27_08-02-22-10 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder28_08-03-08-12 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder29_08-03-23-50 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder2_07-31-02-07 │ │ └── report.json │ │ ├── folder30_08-04-03-24 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder31_08-04-08-12 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder32_08-05-08-11 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder33_08-06-08-12 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder34_08-06-19-10 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder35_08-07-01-04 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder36_08-07-08-12 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder37_08-08-08-13 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder38_08-08-22-23 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder39_08-08-22-30 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder3_07-31-03-06 │ │ └── report.json │ │ ├── folder40_08-09-03-06 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder41_08-09-08-14 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder42_08-09-17-08 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder43_08-10-08-14 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder44_08-10-19-25 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder45_08-11-08-12 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder46_08-11-16-47 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder47_08-12-02-01 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder48_08-12-02-50 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder49_08-12-03-02 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder50_08-12-03-35 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder51_08-12-08-11 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder52_08-12-17-23 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder53_08-13-00-51 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder54_08-13-01-11 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder55_08-13-01-52 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder56_08-13-02-16 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder57_08-13-02-37 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder58_08-13-08-11 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder59_08-14-08-13 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder5_07-31-13-05 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder60_08-14-17-47 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder61_08-14-21-38 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder62_08-15-08-13 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder63_08-15-16-42 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder64_08-16-08-13 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder6_07-31-16-11 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder7_07-31-19-05 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── folder8_07-31-19-38 │ │ ├── radar_chart.png │ │ └── report.json │ │ ├── regression_tests.json │ │ └── success_rate.json ├── run.sh └── server.py ├── forge ├── .env.example ├── .flake8 ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── Makefile ├── README.md ├── autogpt │ ├── __init__.py │ ├── __main__.py │ ├── agent.py │ ├── benchmark_integration.py │ ├── prompts │ │ ├── gpt-3.5-turbo │ │ │ └── role_selection.j2 │ │ └── techniques │ │ │ ├── chain-of-thought.j2 │ │ │ ├── expert.j2 │ │ │ └── few-shot.j2 │ └── sdk │ │ ├── __init__.py │ │ ├── abilities │ │ ├── __init__.py │ │ ├── file_system │ │ │ └── files.py │ │ └── registry.py │ │ ├── agent.py │ │ ├── agent_test.py │ │ ├── ai_actions.py │ │ ├── ai_memory.py │ │ ├── ai_planning.py │ │ ├── ai_profile.py │ │ ├── db.py │ │ ├── db_test.py │ │ ├── errors.py │ │ ├── forge_log.py │ │ ├── llm.py │ │ ├── memory │ │ ├── __init__.py │ │ ├── memstore.py │ │ └── memstore_test.py │ │ ├── middlewares.py │ │ ├── prompting.py │ │ ├── routes │ │ ├── __init__.py │ │ └── agent_protocol.py │ │ ├── schema.py │ │ ├── workspace.py │ │ └── workspace_test.py ├── mypy.ini ├── poetry.lock ├── prometheus.yml ├── pyproject.toml └── run └── frontend ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── auto_gpt_flutter_client │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── lib ├── main.dart ├── models │ ├── chat.dart │ ├── message_type.dart │ ├── pagination.dart │ ├── step.dart │ ├── step_request_body.dart │ ├── task.dart │ ├── task_request_body.dart │ └── task_response.dart ├── services │ ├── chat_service.dart │ └── task_service.dart ├── utils │ └── rest_api_utility.dart ├── viewmodels │ ├── api_settings_viewmodel.dart │ ├── chat_viewmodel.dart │ └── task_viewmodel.dart └── views │ ├── chat │ ├── agent_message_tile.dart │ ├── chat_input_field.dart │ ├── chat_view.dart │ ├── json_code_snippet_view.dart │ └── user_message_tile.dart │ ├── main_layout.dart │ └── task │ ├── api_base_url_field.dart │ ├── new_task_button.dart │ ├── task_list_tile.dart │ └── task_view.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── test ├── agent_message_tile_test.dart ├── chat_input_field_test.dart ├── chat_test.dart ├── chat_viewmodel_test.dart ├── json_code_snippet_view_test.dart ├── new_task_button_test.dart ├── step_request_body_test.dart ├── task_list_tile_test.dart ├── task_request_body_test.dart ├── task_test.dart ├── task_viewmodel_test.dart └── user_message_tile_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tooling_application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/.github/ISSUE_TEMPLATE/tooling_application.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/.github/workflows/pr_agent.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/.env.example -------------------------------------------------------------------------------- /benchmark/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/.flake8 -------------------------------------------------------------------------------- /benchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/.gitignore -------------------------------------------------------------------------------- /benchmark/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/.gitmodules -------------------------------------------------------------------------------- /benchmark/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/.pre-commit-config.yaml -------------------------------------------------------------------------------- /benchmark/.python-version: -------------------------------------------------------------------------------- 1 | 3.10.10 2 | -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/agbenchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/README.md -------------------------------------------------------------------------------- /benchmark/agbenchmark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/agent_api_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/agent_api_interface.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/agent_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/agent_interface.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/app.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/CHALLENGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/challenges/CHALLENGE.md -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/challenges/README.md -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/SUITES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/challenges/SUITES.md -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/abilities/read_file/artifacts_in/file_to_read.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/abilities/read_file/artifacts_out/file_to_check.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/abilities/read_file/artifacts_out/output.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/abilities/write_file/artifacts_out/random_file.txt: -------------------------------------------------------------------------------- 1 | Washington 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/adapatability/a1_debug/artifacts_in/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/adapatability/a1_debug/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/adapatability/a2_tesla_revenue/artifacts_out/random_file.txt: -------------------------------------------------------------------------------- 1 | 81,462 Millions 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/adapatability/a3_book_price/artifacts_out/random_file.txt: -------------------------------------------------------------------------------- 1 | 25.89 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c1_writing_suite_1/1_return/artifacts_in/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c1_writing_suite_1/1_return/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c1_writing_suite_1/2_write/artifacts_in/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c1_writing_suite_1/2_write/artifacts_in/sample_code.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c1_writing_suite_1/2_write/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c1_writing_suite_1/3_modify/artifacts_in/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c1_writing_suite_1/3_modify/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c1_writing_suite_1/4_tests/artifacts_in/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c1_writing_suite_1/4_tests/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c2_debug_suite/d2.1_guided/artifacts_in/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c2_debug_suite/d2.1_guided/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c2_debug_suite/d2.2_vague/artifacts_in/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c2_debug_suite/d2.2_vague/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c2_debug_suite/d2.3_import/artifacts_in/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c2_debug_suite/d2.3_import/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c3_writing_suite_2/d3.1_three_sum/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c3_writing_suite_2/d3_two_sum/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c4_writing_cli_suite_3/1_password_generator/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/code/c4_writing_cli_suite_3/2_file_organizer/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/interface/read_file/artifacts_in/file_to_read.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/interface/read_file/artifacts_out/file_to_check.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/interface/read_file/artifacts_out/output.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/interface/write_file/artifacts_out/random_file.txt: -------------------------------------------------------------------------------- 1 | Washington 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/memory/m1_id/artifacts_in/instructions_2.txt: -------------------------------------------------------------------------------- 1 | Read the file instructions_3.txt 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/memory/m1_id/artifacts_in/instructions_3.txt: -------------------------------------------------------------------------------- 1 | Read the file instructions_4.txt 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/memory/m1_id/artifacts_in/instructions_4.txt: -------------------------------------------------------------------------------- 1 | Read the file instructions_5.txt 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/memory/m1_id/artifacts_out/result.txt: -------------------------------------------------------------------------------- 1 | 2314 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/memory/m2_multiple/artifacts_out/result.txt: -------------------------------------------------------------------------------- 1 | 3145 2 | 3791 3 | 9317 4 | 9471 5 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/memory/m3_noise/artifacts_out/result.txt: -------------------------------------------------------------------------------- 1 | 3145 2 | 3791 3 | 9317 4 | 9471 5 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/retrieval/r1_book_price/artifacts_out/random_file.txt: -------------------------------------------------------------------------------- 1 | 25.89 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/retrieval/r2_search_suite_1/artifacts_out/random_file.txt: -------------------------------------------------------------------------------- 1 | 81,462 Millions 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s2_divergence/artifacts_out/1.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s2_divergence/artifacts_out/2.txt: -------------------------------------------------------------------------------- 1 | Yum -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s2_divergence/artifacts_out/3.txt: -------------------------------------------------------------------------------- 1 | Tea -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s2_divergence/artifacts_out/4.txt: -------------------------------------------------------------------------------- 1 | 2314 -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s2_divergence/artifacts_out/5.txt: -------------------------------------------------------------------------------- 1 | Goodbye -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s3_instructions/artifacts_out/1.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s3_instructions/artifacts_out/2.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s3_instructions/artifacts_out/3.txt: -------------------------------------------------------------------------------- 1 | Yum! -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s3_instructions/artifacts_out/4.txt: -------------------------------------------------------------------------------- 1 | Yum! -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s3_instructions/artifacts_out/5.txt: -------------------------------------------------------------------------------- 1 | Good weather huh? -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/deprecated/safety/s3_instructions/artifacts_out/6.txt: -------------------------------------------------------------------------------- 1 | Good weather huh? -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/library/README.md: -------------------------------------------------------------------------------- 1 | This is the official library for user submitted challenges. 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/library/ethereum/check_price/artifacts_in/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/library/ethereum/check_price/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/optional_categories.json: -------------------------------------------------------------------------------- 1 | { 2 | "optional_categories": ["product_advisor"] 3 | } 4 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/verticals/code/1_password_generator/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/verticals/code/2_file_organizer/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/verticals/code/4_tic_tac_toe/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/verticals/code/d2.1_guided/artifacts_in/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/verticals/code/d2.1_guided/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/verticals/code/d3.1_three_sum/artifacts_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/verticals/scraping/r1_book_price/artifacts_out/random_file.txt: -------------------------------------------------------------------------------- 1 | 25.89 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/verticals/synthesize/1_summary/artifacts_out/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/challenges/verticals/synthesize/r2_search_suite_1/artifacts_out/random_file.txt: -------------------------------------------------------------------------------- 1 | 81,462 Millions 2 | -------------------------------------------------------------------------------- /benchmark/agbenchmark/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/config.json -------------------------------------------------------------------------------- /benchmark/agbenchmark/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/conftest.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/generate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/generate_test.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T111404_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T111533_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T111633_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T111847_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T111906_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112047_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112103_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112126_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112142_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112217_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112311_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112449_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112600_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112616_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112626_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/20230831T112649_full_run/report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/ReportManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/reports/ReportManager.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/processing/get_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/reports/processing/get_files.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/processing/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/reports/processing/graphs.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/processing/report_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/reports/processing/report_types.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/regression_tests.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/reports/reports.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/reports/success_rate.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/agbenchmark/start_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/start_benchmark.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/utils/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/utils/challenge.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/utils/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/utils/data_types.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/utils/dependencies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/utils/dependencies/__init__.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/utils/dependencies/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/utils/dependencies/constants.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/utils/dependencies/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/utils/dependencies/graphs.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/utils/dependencies/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/utils/dependencies/main.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/utils/dependencies/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/utils/dependencies/util.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/utils/get_data_from_helicone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/utils/get_data_from_helicone.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/utils/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/utils/prompts.py -------------------------------------------------------------------------------- /benchmark/agbenchmark/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/agbenchmark/utils/utils.py -------------------------------------------------------------------------------- /benchmark/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/backend/main.py -------------------------------------------------------------------------------- /benchmark/backend/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn -------------------------------------------------------------------------------- /benchmark/frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/.env.example -------------------------------------------------------------------------------- /benchmark/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/.gitignore -------------------------------------------------------------------------------- /benchmark/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/README.md -------------------------------------------------------------------------------- /benchmark/frontend/_eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/_eslintrc.cjs -------------------------------------------------------------------------------- /benchmark/frontend/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/next.config.mjs -------------------------------------------------------------------------------- /benchmark/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/package-lock.json -------------------------------------------------------------------------------- /benchmark/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/package.json -------------------------------------------------------------------------------- /benchmark/frontend/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/postcss.config.cjs -------------------------------------------------------------------------------- /benchmark/frontend/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/prettier.config.cjs -------------------------------------------------------------------------------- /benchmark/frontend/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/prisma/schema.prisma -------------------------------------------------------------------------------- /benchmark/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/public/favicon.ico -------------------------------------------------------------------------------- /benchmark/frontend/public/graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/public/graph.json -------------------------------------------------------------------------------- /benchmark/frontend/src/components/data/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/components/data/Dashboard.tsx -------------------------------------------------------------------------------- /benchmark/frontend/src/components/data/Reports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/components/data/Reports.tsx -------------------------------------------------------------------------------- /benchmark/frontend/src/components/index/Graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/components/index/Graph.tsx -------------------------------------------------------------------------------- /benchmark/frontend/src/components/index/MockCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/components/index/MockCheckbox.tsx -------------------------------------------------------------------------------- /benchmark/frontend/src/components/index/RunData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/components/index/RunData.tsx -------------------------------------------------------------------------------- /benchmark/frontend/src/components/index/SelectedTask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/components/index/SelectedTask.tsx -------------------------------------------------------------------------------- /benchmark/frontend/src/components/index/TaskInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/components/index/TaskInfo.tsx -------------------------------------------------------------------------------- /benchmark/frontend/src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/env.mjs -------------------------------------------------------------------------------- /benchmark/frontend/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/pages/_app.tsx -------------------------------------------------------------------------------- /benchmark/frontend/src/pages/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/pages/data.tsx -------------------------------------------------------------------------------- /benchmark/frontend/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/pages/index.tsx -------------------------------------------------------------------------------- /benchmark/frontend/src/server/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/server/db.ts -------------------------------------------------------------------------------- /benchmark/frontend/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/src/styles/globals.css -------------------------------------------------------------------------------- /benchmark/frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /benchmark/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/frontend/tsconfig.json -------------------------------------------------------------------------------- /benchmark/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/mypy.ini -------------------------------------------------------------------------------- /benchmark/notebooks/LLM Score Experimentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/notebooks/LLM Score Experimentation.ipynb -------------------------------------------------------------------------------- /benchmark/notebooks/Visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/notebooks/Visualization.ipynb -------------------------------------------------------------------------------- /benchmark/notebooks/combined_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/notebooks/combined_data.ipynb -------------------------------------------------------------------------------- /benchmark/notebooks/selected_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/notebooks/selected_logs.json -------------------------------------------------------------------------------- /benchmark/notebooks/selected_logs_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/notebooks/selected_logs_nested.json -------------------------------------------------------------------------------- /benchmark/paper/TestRevenueRetrieval/auto-gpt-turbo/selected_logs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestRevenueRetrieval/auto-gpt-turbo/selected_logs_nested.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestRevenueRetrieval/evo/selected_logs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestRevenueRetrieval/evo/selected_logs_nested.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestRevenueRetrieval/gpt-engineer/selected_logs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestRevenueRetrieval/gpt-engineer/selected_logs_nested.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestRevenueRetrieval/smol-developer/selected_logs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestRevenueRetrieval/smol-developer/selected_logs_nested.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestThreeSum/auto-gpt-turbo/selected_logs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestThreeSum/auto-gpt-turbo/selected_logs_nested.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestThreeSum/auto-gpt/selected_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/paper/TestThreeSum/auto-gpt/selected_logs.json -------------------------------------------------------------------------------- /benchmark/paper/TestThreeSum/babyagi/selected_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/paper/TestThreeSum/babyagi/selected_logs.json -------------------------------------------------------------------------------- /benchmark/paper/TestThreeSum/beebot/selected_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/paper/TestThreeSum/beebot/selected_logs.json -------------------------------------------------------------------------------- /benchmark/paper/TestThreeSum/evo/selected_logs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestThreeSum/evo/selected_logs_nested.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/paper/TestThreeSum/mini-agi/selected_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/paper/TestThreeSum/mini-agi/selected_logs.json -------------------------------------------------------------------------------- /benchmark/paper/TestThreeSum/polygpt/selected_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/paper/TestThreeSum/polygpt/selected_logs.json -------------------------------------------------------------------------------- /benchmark/paper/TestThreeSum/turbo/selected_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/paper/TestThreeSum/turbo/selected_logs.json -------------------------------------------------------------------------------- /benchmark/paper/agent_action_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/paper/agent_action_regex.py -------------------------------------------------------------------------------- /benchmark/paper/combined_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/paper/combined_data.ipynb -------------------------------------------------------------------------------- /benchmark/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/poetry.lock -------------------------------------------------------------------------------- /benchmark/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/pyproject.toml -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file11_07-20-23-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file11_07-20-23-18.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file12_07-20-23-45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file12_07-20-23-45.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file13_07-21-00-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file13_07-21-00-20.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file14_07-21-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file14_07-21-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file15_07-21-18-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file15_07-21-18-18.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file16_07-22-08-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file16_07-22-08-16.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file17_07-22-15-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file17_07-22-15-10.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file18_07-23-08-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file18_07-23-08-17.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file19_07-23-16-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file19_07-23-16-22.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file1_07-18-00-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file1_07-18-00-18.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file20_07-23-19-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file20_07-23-19-08.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file21_07-23-19-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file21_07-23-19-27.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file22_07-23-19-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file22_07-23-19-35.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file23_07-23-19-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file23_07-23-19-53.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file24_07-23-21-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file24_07-23-21-03.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file24_07-23-21-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file24_07-23-21-06.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file26_07-23-22-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file26_07-23-22-25.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file26_07-23-22-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file26_07-23-22-26.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file28_07-24-08-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file28_07-24-08-19.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file29_07-24-22-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file29_07-24-22-11.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file2_07-18-02-45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file2_07-18-02-45.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file30_07-24-23-51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file30_07-24-23-51.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file31_07-25-01-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file31_07-25-01-05.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file32_07-25-01-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file32_07-25-01-35.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file33_07-25-03-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file33_07-25-03-14.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file34_07-25-03-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file34_07-25-03-35.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file35_07-25-03-59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file35_07-25-03-59.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file36_07-25-04-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file36_07-25-04-20.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file37_07-25-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file37_07-25-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file38_07-25-18-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file38_07-25-18-10.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file38_07-25-18-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file38_07-25-18-12.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file38_07-25-18-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file38_07-25-18-14.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file3_07-18-08-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file3_07-18-08-19.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file41_07-26-00-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file41_07-26-00-53.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file42_07-26-03-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file42_07-26-03-15.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file43_07-26-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file43_07-26-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file46_07-27-18-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file46_07-27-18-44.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file47_07-27-13-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file47_07-27-13-31.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file47_07-27-19-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file47_07-27-19-24.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file48_07-27-13-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file48_07-27-13-38.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file48_07-27-19-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file48_07-27-19-56.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file49_07-28-03-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file49_07-28-03-53.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file4_07-18-16-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file4_07-18-16-20.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file50_07-28-04-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file50_07-28-04-10.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file51_07-29-08-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file51_07-29-08-12.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file52_07-29-09-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file52_07-29-09-24.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file53_07-29-09-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file53_07-29-09-29.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file54_07-29-10-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file54_07-29-10-18.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file55_07-29-10-45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file55_07-29-10-45.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file56_07-29-16-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file56_07-29-16-09.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file57_07-29-17-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file57_07-29-17-21.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file59_07-30-03-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file59_07-30-03-06.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file59_07-30-08-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file59_07-30-08-12.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file5_07-19-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file5_07-19-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file6_07-19-20-40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file6_07-19-20-40.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file7_07-19-21-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file7_07-19-21-56.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file8_07-20-20-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file8_07-20-20-12.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file9_07-20-22-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file9_07-20-22-44.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/file9_07-20-22-49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/file9_07-20-22-49.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/regression_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/regression_tests.json -------------------------------------------------------------------------------- /benchmark/reports/Auto-GPT/success_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Auto-GPT/success_rate.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file10_07-23-21-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file10_07-23-21-06.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file10_07-23-21-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file10_07-23-21-07.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file12_07-23-22-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file12_07-23-22-28.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file13_07-24-08-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file13_07-24-08-21.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file14_07-24-22-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file14_07-24-22-15.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file15_07-24-23-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file15_07-24-23-53.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file16_07-25-01-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file16_07-25-01-07.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file17_07-25-01-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file17_07-25-01-38.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file18_07-25-03-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file18_07-25-03-16.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file19_07-25-03-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file19_07-25-03-38.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file1_07-21-18-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file1_07-21-18-20.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file20_07-25-04-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file20_07-25-04-01.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file21_07-25-04-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file21_07-25-04-22.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file22_07-25-08-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file22_07-25-08-22.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file23_07-25-18-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file23_07-25-18-13.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file23_07-25-18-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file23_07-25-18-14.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file23_07-25-18-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file23_07-25-18-16.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file26_07-26-00-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file26_07-26-00-56.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file27_07-26-03-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file27_07-26-03-17.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file28_07-26-08-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file28_07-26-08-21.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file29_07-27-13-33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file29_07-27-13-33.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file2_07-22-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file2_07-22-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file30_07-27-13-40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file30_07-27-13-40.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file31_07-27-18-46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file31_07-27-18-46.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file32_07-27-19-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file32_07-27-19-27.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file33_07-27-19-59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file33_07-27-19-59.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file34_07-28-03-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file34_07-28-03-56.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file35_07-28-04-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file35_07-28-04-13.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file36_07-28-08-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file36_07-28-08-14.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file37_07-29-08-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file37_07-29-08-14.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file38_07-29-09-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file38_07-29-09-30.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file39_07-29-10-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file39_07-29-10-20.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file3_07-22-15-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file3_07-22-15-12.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file40_07-29-10-47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file40_07-29-10-47.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file41_07-29-16-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file41_07-29-16-11.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file42_07-29-17-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file42_07-29-17-23.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file43_07-29-18-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file43_07-29-18-09.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file44_07-30-00-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file44_07-30-00-53.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file45_07-30-01-41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file45_07-30-01-41.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file46_07-30-03-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file46_07-30-03-08.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file47_07-30-04-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file47_07-30-04-26.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file48_07-30-08-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file48_07-30-08-14.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file4_07-23-08-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file4_07-23-08-20.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file5_07-23-16-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file5_07-23-16-24.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file6_07-23-19-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file6_07-23-19-11.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file7_07-23-19-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file7_07-23-19-28.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file8_07-23-19-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file8_07-23-19-37.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/file9_07-23-19-55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/file9_07-23-19-55.json -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/regression_tests.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/reports/BabyAGI/success_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/BabyAGI/success_rate.json -------------------------------------------------------------------------------- /benchmark/reports/PolyGPT/regression_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/PolyGPT/regression_tests.json -------------------------------------------------------------------------------- /benchmark/reports/PolyGPT/success_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/PolyGPT/success_rate.json -------------------------------------------------------------------------------- /benchmark/reports/Turbo/regression_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Turbo/regression_tests.json -------------------------------------------------------------------------------- /benchmark/reports/Turbo/success_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/Turbo/success_rate.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file10_07-23-08-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file10_07-23-08-17.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file11_07-23-16-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file11_07-23-16-21.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file12_07-23-19-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file12_07-23-19-07.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file13_07-23-19-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file13_07-23-19-27.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file13_07-23-19-34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file13_07-23-19-34.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file15_07-23-19-54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file15_07-23-19-54.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file16_07-23-21-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file16_07-23-21-03.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file16_07-23-21-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file16_07-23-21-06.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file18_07-23-22-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file18_07-23-22-26.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file19_07-24-08-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file19_07-24-08-19.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file1_07-20-22-48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file1_07-20-22-48.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file20_07-24-23-51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file20_07-24-23-51.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file21_07-25-01-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file21_07-25-01-05.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file22_07-25-01-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file22_07-25-01-35.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file23_07-25-03-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file23_07-25-03-13.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file24_07-25-03-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file24_07-25-03-35.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file24_07-25-03-59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file24_07-25-03-59.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file25_07-25-04-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file25_07-25-04-19.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file27_07-25-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file27_07-25-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file28_07-25-18-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file28_07-25-18-09.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file28_07-25-18-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file28_07-25-18-11.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file28_07-25-18-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file28_07-25-18-13.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file31_07-26-00-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file31_07-26-00-53.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file32_07-26-03-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file32_07-26-03-16.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file33_07-26-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file33_07-26-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file34_07-27-19-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file34_07-27-19-24.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file35_07-27-19-55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file35_07-27-19-55.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file36_07-28-03-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file36_07-28-03-53.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file36_07-28-04-34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file36_07-28-04-34.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file38_07-28-08-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file38_07-28-08-12.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file39_07-29-08-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file39_07-29-08-12.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file3_07-20-23-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file3_07-20-23-18.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file40_07-29-09-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file40_07-29-09-29.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file41_07-29-10-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file41_07-29-10-17.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file42_07-29-10-46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file42_07-29-10-46.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file43_07-29-16-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file43_07-29-16-09.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file44_07-29-17-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file44_07-29-17-20.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file45_07-30-00-51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file45_07-30-00-51.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file46_07-30-01-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file46_07-30-01-38.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file47_07-30-03-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file47_07-30-03-05.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file48_07-30-04-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file48_07-30-04-24.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file49_07-30-08-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file49_07-30-08-11.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file4_07-20-22-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file4_07-20-22-44.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file4_07-20-23-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file4_07-20-23-43.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file5_07-21-00-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file5_07-21-00-20.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file6_07-21-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file6_07-21-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file7_07-21-18-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file7_07-21-18-18.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file8_07-22-08-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file8_07-22-08-16.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/file9_07-22-15-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/file9_07-22-15-10.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/folder1_07-30-22-53/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/folder1_07-30-22-53/report.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/folder2_07-31-02-07/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/folder2_07-31-02-07/report.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/folder3_07-31-03-06/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/folder3_07-31-03-06/report.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/folder4_07-31-12-44/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/folder4_07-31-12-44/report.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/folder6_07-31-16-09/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/folder6_07-31-16-09/report.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/folder7_07-31-19-05/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/folder7_07-31-19-05/report.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/folder8_07-31-19-38/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/folder8_07-31-19-38/report.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/folder9_07-31-21-02/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/folder9_07-31-21-02/report.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/regression_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/regression_tests.json -------------------------------------------------------------------------------- /benchmark/reports/beebot/success_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/beebot/success_rate.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run1/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run1/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run1/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run1/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run1/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run1/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run10/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run10/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run10/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run10/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run10/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run10/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run11/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run11/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run11/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run11/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run11/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run11/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run12/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run12/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run12/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run12/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run12/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run12/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run13/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run13/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run13/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run13/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run13/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run13/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run14/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run14/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run14/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run14/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run14/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run14/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run15/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run15/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run15/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run15/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run15/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run15/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run16/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run16/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run16/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run16/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run16/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run16/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run17/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run17/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run17/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run17/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run17/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run17/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run18/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run18/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run18/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run18/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run18/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run18/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run19/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run19/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run19/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run19/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run19/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run19/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run2/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run2/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run2/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run2/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run2/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run2/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run20/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run20/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run20/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run20/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run20/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run20/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run21/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run21/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run21/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run21/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run21/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run21/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run22/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run22/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run22/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run22/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run22/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run22/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run23/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run23/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run23/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run23/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run23/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run23/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run24/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run24/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run24/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run24/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run24/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run24/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run25/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run25/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run25/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run25/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run25/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run25/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run26/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run26/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run26/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run26/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run26/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run26/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run27/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run27/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run27/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run27/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run27/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run27/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run28/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run28/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run28/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run28/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run28/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run28/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run29/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run29/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run29/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run29/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run29/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run29/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run3/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run3/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run3/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run3/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run3/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run3/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run30/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run30/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run30/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run30/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run30/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run30/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run31/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run31/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run31/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run31/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run31/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run31/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run32/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run32/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run32/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run32/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run32/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run32/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run33/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run33/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run33/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run33/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run33/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run33/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run35/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run35/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run35/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run35/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run35/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run35/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run36/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run36/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run36/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run36/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run36/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run36/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run37/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run37/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run37/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run37/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run37/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run37/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run38/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run38/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run38/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run38/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run38/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run38/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run39/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run39/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run39/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run39/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run39/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run39/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run4/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run4/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run4/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run4/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run4/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run4/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run40/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run40/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run40/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run40/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run40/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run40/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run41/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run41/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run41/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run41/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run41/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run41/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run42/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run42/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run42/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run42/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run42/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run42/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run43/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run43/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run43/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run43/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run43/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run43/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run44/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run44/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run44/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run44/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run44/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run44/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run45/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run45/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run45/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run45/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run45/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run45/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run46/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run46/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run47/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run47/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run48/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run48/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run49/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run49/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run5/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run5/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run5/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run5/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run5/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run5/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run50/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run50/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run51/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run51/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run6/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run6/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run6/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run6/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run6/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run6/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run7/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run7/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run7/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run7/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run7/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run7/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run8/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run8/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run8/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run8/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run8/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run8/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run9/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run9/bar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run9/radar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run9/radar_chart.png -------------------------------------------------------------------------------- /benchmark/reports/combined_charts/run9/run_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/combined_charts/run9/run_info.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file11_07-20-23-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file11_07-20-23-17.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file12_07-20-23-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file12_07-20-23-43.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file13_07-21-00-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file13_07-21-00-20.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file14_07-21-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file14_07-21-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file15_07-21-18-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file15_07-21-18-17.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file16_07-22-08-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file16_07-22-08-16.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file17_07-22-15-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file17_07-22-15-10.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file18_07-23-08-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file18_07-23-08-16.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file19_07-23-16-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file19_07-23-16-21.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file1_07-18-00-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file1_07-18-00-17.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file20_07-23-19-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file20_07-23-19-07.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file21_07-23-19-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file21_07-23-19-26.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file22_07-23-19-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file22_07-23-19-35.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file23_07-23-19-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file23_07-23-19-53.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file24_07-23-21-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file24_07-23-21-03.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file24_07-23-21-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file24_07-23-21-05.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file26_07-23-22-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file26_07-23-22-25.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file27_07-24-08-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file27_07-24-08-19.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file28_07-24-22-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file28_07-24-22-11.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file29_07-24-23-50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file29_07-24-23-50.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file2_07-18-02-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file2_07-18-02-44.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file30_07-25-01-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file30_07-25-01-05.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file31_07-25-01-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file31_07-25-01-35.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file32_07-25-03-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file32_07-25-03-14.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file33_07-25-03-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file33_07-25-03-35.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file34_07-25-03-58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file34_07-25-03-58.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file35_07-25-04-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file35_07-25-04-19.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file36_07-25-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file36_07-25-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file37_07-25-18-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file37_07-25-18-09.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file37_07-25-18-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file37_07-25-18-11.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file37_07-25-18-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file37_07-25-18-13.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file3_07-18-08-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file3_07-18-08-19.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file40_07-26-00-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file40_07-26-00-53.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file41_07-26-03-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file41_07-26-03-15.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file42_07-26-08-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file42_07-26-08-17.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file43_07-27-13-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file43_07-27-13-30.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file44_07-27-13-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file44_07-27-13-37.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file45_07-27-18-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file45_07-27-18-44.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file46_07-27-19-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file46_07-27-19-23.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file47_07-27-19-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file47_07-27-19-56.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file48_07-28-04-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file48_07-28-04-10.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file49_07-28-08-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file49_07-28-08-12.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file4_07-18-16-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file4_07-18-16-19.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file50_07-29-08-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file50_07-29-08-11.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file51_07-29-09-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file51_07-29-09-29.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file52_07-29-10-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file52_07-29-10-17.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file53_07-29-10-45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file53_07-29-10-45.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file54_07-29-16-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file54_07-29-16-10.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file55_07-29-17-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file55_07-29-17-21.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file56_07-29-18-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file56_07-29-18-06.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file5_07-19-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file5_07-19-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file6_07-19-21-55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file6_07-19-21-55.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file7_07-20-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file7_07-20-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file8_07-20-20-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file8_07-20-20-10.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file9_07-20-22-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file9_07-20-22-44.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/file9_07-20-22-48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/file9_07-20-22-48.json -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/regression_tests.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /benchmark/reports/gpt-engineer/success_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/gpt-engineer/success_rate.json -------------------------------------------------------------------------------- /benchmark/reports/json_to_base_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/json_to_base_64.py -------------------------------------------------------------------------------- /benchmark/reports/match_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/match_records.py -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/1.1_TestWriteFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/1.1_TestWriteFile.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/14_TestReturnCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/14_TestReturnCode.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/1_07-18-02-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/1_07-18-02-44.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/1_TestWriteFIle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/1_TestWriteFIle.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/2.1_TestReadFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/2.1_TestReadFile.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/2_07-18-16-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/2_07-18-16-20.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/2_TestReadFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/2_TestReadFile.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/3.1_TestSearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/3.1_TestSearch.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/3_07-20-22-44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/3_07-20-22-44.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/3_TestSearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/3_TestSearch.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/4_07-20-23-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/4_07-20-23-18.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/4_TestBasicRetrieval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/4_TestBasicRetrieval.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/5_07-20-23-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/5_07-20-23-43.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/6_07-21-00-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/6_07-21-00-20.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/7_07-21-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/7_07-21-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/8.1_TestBasicMemory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/8.1_TestBasicMemory.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/8_07-21-18-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/8_07-21-18-18.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/8_TestBasicMemory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/8_TestBasicMemory.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/9_07-22-08-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/9_07-22-08-16.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file10_07-23-16-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file10_07-23-16-21.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file11_07-23-19-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file11_07-23-19-07.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file12_07-23-19-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file12_07-23-19-53.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file13_07-23-21-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file13_07-23-21-03.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file13_07-23-21-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file13_07-23-21-07.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file15_07-23-22-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file15_07-23-22-26.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file16_07-24-08-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file16_07-24-08-21.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file56_07-24-22-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file56_07-24-22-12.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file57_07-24-23-51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file57_07-24-23-51.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file58_07-25-01-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file58_07-25-01-04.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file59_07-25-01-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file59_07-25-01-35.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file60_07-25-03-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file60_07-25-03-14.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file61_07-25-03-35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file61_07-25-03-35.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file62_07-25-03-59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file62_07-25-03-59.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file63_07-25-08-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file63_07-25-08-19.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file64_07-25-18-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file64_07-25-18-09.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file64_07-25-18-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file64_07-25-18-11.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file64_07-25-18-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file64_07-25-18-13.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file67_07-26-00-54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file67_07-26-00-54.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file68_07-26-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file68_07-26-08-18.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file69_07-27-13-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file69_07-27-13-30.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file70_07-27-13-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file70_07-27-13-38.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file71_07-27-18-45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file71_07-27-18-45.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file72_07-27-19-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file72_07-27-19-23.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file73_07-27-19-55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file73_07-27-19-55.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file74_07-28-03-53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file74_07-28-03-53.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file75_07-28-04-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file75_07-28-04-10.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file76_07-29-08-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file76_07-29-08-11.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file77_07-29-09-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file77_07-29-09-29.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file78_07-29-17-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file78_07-29-17-20.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file79_07-29-18-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file79_07-29-18-06.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file80_07-30-01-38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file80_07-30-01-38.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file81_07-30-03-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file81_07-30-03-05.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file82_07-30-04-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file82_07-30-04-24.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/file83_07-30-08-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/file83_07-30-08-12.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/regression_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/regression_tests.json -------------------------------------------------------------------------------- /benchmark/reports/mini-agi/success_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/mini-agi/success_rate.json -------------------------------------------------------------------------------- /benchmark/reports/send_to_googledrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/send_to_googledrive.py -------------------------------------------------------------------------------- /benchmark/reports/smol-developer/success_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/reports/smol-developer/success_rate.json -------------------------------------------------------------------------------- /benchmark/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/run.sh -------------------------------------------------------------------------------- /benchmark/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/benchmark/server.py -------------------------------------------------------------------------------- /forge/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/.env.example -------------------------------------------------------------------------------- /forge/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/.flake8 -------------------------------------------------------------------------------- /forge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/.gitignore -------------------------------------------------------------------------------- /forge/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/.pre-commit-config.yaml -------------------------------------------------------------------------------- /forge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/Dockerfile -------------------------------------------------------------------------------- /forge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/Makefile -------------------------------------------------------------------------------- /forge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/README.md -------------------------------------------------------------------------------- /forge/autogpt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forge/autogpt/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/__main__.py -------------------------------------------------------------------------------- /forge/autogpt/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/agent.py -------------------------------------------------------------------------------- /forge/autogpt/benchmark_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/benchmark_integration.py -------------------------------------------------------------------------------- /forge/autogpt/prompts/gpt-3.5-turbo/role_selection.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/prompts/gpt-3.5-turbo/role_selection.j2 -------------------------------------------------------------------------------- /forge/autogpt/prompts/techniques/chain-of-thought.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/prompts/techniques/chain-of-thought.j2 -------------------------------------------------------------------------------- /forge/autogpt/prompts/techniques/expert.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/prompts/techniques/expert.j2 -------------------------------------------------------------------------------- /forge/autogpt/prompts/techniques/few-shot.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/prompts/techniques/few-shot.j2 -------------------------------------------------------------------------------- /forge/autogpt/sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/__init__.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/abilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forge/autogpt/sdk/abilities/file_system/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/abilities/file_system/files.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/abilities/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/abilities/registry.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/agent.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/agent_test.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/ai_actions.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forge/autogpt/sdk/ai_memory.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forge/autogpt/sdk/ai_planning.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forge/autogpt/sdk/ai_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/ai_profile.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/db.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/db_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/db_test.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/errors.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/forge_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/forge_log.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/llm.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forge/autogpt/sdk/memory/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /forge/autogpt/sdk/memory/memstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/memory/memstore.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/memory/memstore_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/memory/memstore_test.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/middlewares.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/prompting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/prompting.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forge/autogpt/sdk/routes/agent_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/routes/agent_protocol.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/schema.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/workspace.py -------------------------------------------------------------------------------- /forge/autogpt/sdk/workspace_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/autogpt/sdk/workspace_test.py -------------------------------------------------------------------------------- /forge/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/mypy.ini -------------------------------------------------------------------------------- /forge/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/poetry.lock -------------------------------------------------------------------------------- /forge/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/prometheus.yml -------------------------------------------------------------------------------- /forge/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/pyproject.toml -------------------------------------------------------------------------------- /forge/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/forge/run -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/.metadata -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/analysis_options.yaml -------------------------------------------------------------------------------- /frontend/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/android/.gitignore -------------------------------------------------------------------------------- /frontend/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/android/app/build.gradle -------------------------------------------------------------------------------- /frontend/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /frontend/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/android/build.gradle -------------------------------------------------------------------------------- /frontend/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/android/gradle.properties -------------------------------------------------------------------------------- /frontend/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/android/settings.gradle -------------------------------------------------------------------------------- /frontend/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/ios/.gitignore -------------------------------------------------------------------------------- /frontend/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /frontend/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /frontend/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /frontend/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/ios/Podfile -------------------------------------------------------------------------------- /frontend/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /frontend/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /frontend/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /frontend/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/ios/Runner/Info.plist -------------------------------------------------------------------------------- /frontend/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /frontend/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /frontend/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/main.dart -------------------------------------------------------------------------------- /frontend/lib/models/chat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/models/chat.dart -------------------------------------------------------------------------------- /frontend/lib/models/message_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/models/message_type.dart -------------------------------------------------------------------------------- /frontend/lib/models/pagination.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/models/pagination.dart -------------------------------------------------------------------------------- /frontend/lib/models/step.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/models/step.dart -------------------------------------------------------------------------------- /frontend/lib/models/step_request_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/models/step_request_body.dart -------------------------------------------------------------------------------- /frontend/lib/models/task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/models/task.dart -------------------------------------------------------------------------------- /frontend/lib/models/task_request_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/models/task_request_body.dart -------------------------------------------------------------------------------- /frontend/lib/models/task_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/models/task_response.dart -------------------------------------------------------------------------------- /frontend/lib/services/chat_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/services/chat_service.dart -------------------------------------------------------------------------------- /frontend/lib/services/task_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/services/task_service.dart -------------------------------------------------------------------------------- /frontend/lib/utils/rest_api_utility.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/utils/rest_api_utility.dart -------------------------------------------------------------------------------- /frontend/lib/viewmodels/api_settings_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/viewmodels/api_settings_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/viewmodels/chat_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/viewmodels/chat_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/viewmodels/task_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/viewmodels/task_viewmodel.dart -------------------------------------------------------------------------------- /frontend/lib/views/chat/agent_message_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/views/chat/agent_message_tile.dart -------------------------------------------------------------------------------- /frontend/lib/views/chat/chat_input_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/views/chat/chat_input_field.dart -------------------------------------------------------------------------------- /frontend/lib/views/chat/chat_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/views/chat/chat_view.dart -------------------------------------------------------------------------------- /frontend/lib/views/chat/json_code_snippet_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/views/chat/json_code_snippet_view.dart -------------------------------------------------------------------------------- /frontend/lib/views/chat/user_message_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/views/chat/user_message_tile.dart -------------------------------------------------------------------------------- /frontend/lib/views/main_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/views/main_layout.dart -------------------------------------------------------------------------------- /frontend/lib/views/task/api_base_url_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/views/task/api_base_url_field.dart -------------------------------------------------------------------------------- /frontend/lib/views/task/new_task_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/views/task/new_task_button.dart -------------------------------------------------------------------------------- /frontend/lib/views/task/task_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/views/task/task_list_tile.dart -------------------------------------------------------------------------------- /frontend/lib/views/task/task_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/lib/views/task/task_view.dart -------------------------------------------------------------------------------- /frontend/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /frontend/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/linux/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /frontend/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /frontend/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /frontend/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/linux/main.cc -------------------------------------------------------------------------------- /frontend/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/linux/my_application.cc -------------------------------------------------------------------------------- /frontend/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/linux/my_application.h -------------------------------------------------------------------------------- /frontend/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/.gitignore -------------------------------------------------------------------------------- /frontend/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /frontend/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /frontend/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Podfile -------------------------------------------------------------------------------- /frontend/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /frontend/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /frontend/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /frontend/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /frontend/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /frontend/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /frontend/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /frontend/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /frontend/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner/Info.plist -------------------------------------------------------------------------------- /frontend/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /frontend/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /frontend/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /frontend/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/pubspec.lock -------------------------------------------------------------------------------- /frontend/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/pubspec.yaml -------------------------------------------------------------------------------- /frontend/test/agent_message_tile_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/agent_message_tile_test.dart -------------------------------------------------------------------------------- /frontend/test/chat_input_field_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/chat_input_field_test.dart -------------------------------------------------------------------------------- /frontend/test/chat_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/chat_test.dart -------------------------------------------------------------------------------- /frontend/test/chat_viewmodel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/chat_viewmodel_test.dart -------------------------------------------------------------------------------- /frontend/test/json_code_snippet_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/json_code_snippet_view_test.dart -------------------------------------------------------------------------------- /frontend/test/new_task_button_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/new_task_button_test.dart -------------------------------------------------------------------------------- /frontend/test/step_request_body_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/step_request_body_test.dart -------------------------------------------------------------------------------- /frontend/test/task_list_tile_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/task_list_tile_test.dart -------------------------------------------------------------------------------- /frontend/test/task_request_body_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/task_request_body_test.dart -------------------------------------------------------------------------------- /frontend/test/task_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/task_test.dart -------------------------------------------------------------------------------- /frontend/test/task_viewmodel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/task_viewmodel_test.dart -------------------------------------------------------------------------------- /frontend/test/user_message_tile_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/test/user_message_tile_test.dart -------------------------------------------------------------------------------- /frontend/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/web/favicon.png -------------------------------------------------------------------------------- /frontend/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/web/icons/Icon-192.png -------------------------------------------------------------------------------- /frontend/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/web/icons/Icon-512.png -------------------------------------------------------------------------------- /frontend/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /frontend/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /frontend/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/web/index.html -------------------------------------------------------------------------------- /frontend/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/web/manifest.json -------------------------------------------------------------------------------- /frontend/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/.gitignore -------------------------------------------------------------------------------- /frontend/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /frontend/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/Runner.rc -------------------------------------------------------------------------------- /frontend/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /frontend/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /frontend/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/main.cpp -------------------------------------------------------------------------------- /frontend/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/resource.h -------------------------------------------------------------------------------- /frontend/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /frontend/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /frontend/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/utils.cpp -------------------------------------------------------------------------------- /frontend/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/utils.h -------------------------------------------------------------------------------- /frontend/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /frontend/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT-Forge/HEAD/frontend/windows/runner/win32_window.h --------------------------------------------------------------------------------