mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-02-01 12:24:28 +01:00
fixed datetime and changed benchmark defaults for autogpt
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user