From cd30e189864524bcfeaee33c03f115ec8834c7c1 Mon Sep 17 00:00:00 2001 From: Merwane Hamadi Date: Tue, 12 Sep 2023 12:40:53 -0700 Subject: [PATCH] Change agbenchmark folder --- autogpts/autogpt/.dockerignore | 4 ++-- autogpts/autogpt/.gitignore | 2 +- .../autogpt/{agbenchmark => agbenchmark_config}/__init__.py | 0 .../{agbenchmark => agbenchmark_config}/analyze_reports.py | 0 .../autogpt/{agbenchmark => agbenchmark_config}/benchmarks.py | 0 .../autogpt/{agbenchmark => agbenchmark_config}/config.json | 0 autogpts/autogpt/tests/challenges/utils.py | 2 +- 7 files changed, 4 insertions(+), 4 deletions(-) rename autogpts/autogpt/{agbenchmark => agbenchmark_config}/__init__.py (100%) rename autogpts/autogpt/{agbenchmark => agbenchmark_config}/analyze_reports.py (100%) rename autogpts/autogpt/{agbenchmark => agbenchmark_config}/benchmarks.py (100%) rename autogpts/autogpt/{agbenchmark => agbenchmark_config}/config.json (100%) 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