diff --git a/autogpts/autogpt/.dockerignore b/autogpts/autogpt/.dockerignore index 19db4eb9..4ebdf349 100644 --- a/autogpts/autogpt/.dockerignore +++ b/autogpts/autogpt/.dockerignore @@ -6,8 +6,8 @@ data/* logs/* -agbenchmark/logs/* -agbenchmark/reports/* +agbenchmark_config/logs/* +agbenchmark_config/reports/* *.md *.png diff --git a/autogpts/autogpt/.gitignore b/autogpts/autogpt/.gitignore index ad6e82b7..c2511764 100644 --- a/autogpts/autogpt/.gitignore +++ b/autogpts/autogpt/.gitignore @@ -162,7 +162,7 @@ openai/ CURRENT_BULLETIN.md # AgBenchmark -agbenchmark/reports/ +agbenchmark_config/reports/ # Nodejs package-lock.json diff --git a/autogpts/autogpt/agbenchmark/__init__.py b/autogpts/autogpt/agbenchmark_config/__init__.py similarity index 100% rename from autogpts/autogpt/agbenchmark/__init__.py rename to autogpts/autogpt/agbenchmark_config/__init__.py diff --git a/autogpts/autogpt/agbenchmark/analyze_reports.py b/autogpts/autogpt/agbenchmark_config/analyze_reports.py similarity index 100% rename from autogpts/autogpt/agbenchmark/analyze_reports.py rename to autogpts/autogpt/agbenchmark_config/analyze_reports.py diff --git a/autogpts/autogpt/agbenchmark/benchmarks.py b/autogpts/autogpt/agbenchmark_config/benchmarks.py similarity index 100% rename from autogpts/autogpt/agbenchmark/benchmarks.py rename to autogpts/autogpt/agbenchmark_config/benchmarks.py diff --git a/autogpts/autogpt/agbenchmark/config.json b/autogpts/autogpt/agbenchmark_config/config.json similarity index 100% rename from autogpts/autogpt/agbenchmark/config.json rename to autogpts/autogpt/agbenchmark_config/config.json diff --git a/autogpts/autogpt/tests/challenges/utils.py b/autogpts/autogpt/tests/challenges/utils.py index 67d7425c..b12121ac 100644 --- a/autogpts/autogpt/tests/challenges/utils.py +++ b/autogpts/autogpt/tests/challenges/utils.py @@ -6,7 +6,7 @@ from typing import Any, Generator import pytest -from agbenchmark.benchmarks import run_specific_agent +from agbenchmark_config.benchmarks import run_specific_agent from autogpt.logs import LogCycleHandler from autogpt.workspace import Workspace from tests.challenges.schema import Task