fixed datetime and changed benchmark defaults for autogpt

This commit is contained in:
SwiftyOS
2023-09-13 13:47:26 +02:00
parent ab26c07296
commit ed172dec19
2 changed files with 4 additions and 3 deletions

View File

@@ -22,8 +22,9 @@ def run_specific_agent(task: str, continuous_mode: bool = False) -> None:
def bootstrap_agent(task: str, continuous_mode: bool) -> Agent:
config = ConfigBuilder.build_config_from_env(workdir=PROJECT_DIR)
config.debug_mode = True
config.debug_mode = False
config.continuous_mode = continuous_mode
config.continuous_limit = 20
config.temperature = 0
config.noninteractive_mode = True
config.plain_output = True

View File

@@ -39,7 +39,7 @@ STRING_DIFFICULTY_MAP = {e.value: DIFFICULTY_MAP[e] for e in DifficultyLevel}
def calculate_info_test_path(
base_path: Path, benchmark_start_time: datetime.datetime
base_path: Path, benchmark_start_time: datetime
) -> Path:
"""
Calculates the path to the directory where the test report will be saved.
@@ -105,7 +105,7 @@ class AgentBenchmarkConfig(BaseModel):
# ).resolve()
return Path.cwd() / "agbenchmark_config" / "reports"
def get_reports_path(self, benchmark_start_time: datetime.datetime) -> Path:
def get_reports_path(self, benchmark_start_time: datetime) -> Path:
return calculate_info_test_path(
self.get_reports_location(), benchmark_start_time
)