mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 22:14:28 +01:00
67 lines
2.2 KiB
Python
67 lines
2.2 KiB
Python
import json
|
|
import os
|
|
from pathlib import Path
|
|
from typing import Any
|
|
|
|
from agbenchmark.reports.processing.get_files import (
|
|
get_latest_report_from_agent_directories,
|
|
)
|
|
from agbenchmark.reports.processing.report_types import Report, Test
|
|
from agbenchmark.utils.data_types import STRING_DIFFICULTY_MAP
|
|
|
|
|
|
def get_reports_data(report_path: str) -> dict[str, Any]:
|
|
latest_files = get_latest_report_from_agent_directories(report_path)
|
|
|
|
reports_data = {}
|
|
|
|
if latest_files is None:
|
|
raise Exception("No files found in the reports directory")
|
|
|
|
# This will print the latest file in each subdirectory and add to the files_data dictionary
|
|
for subdir, file in latest_files:
|
|
subdir_name = os.path.basename(os.path.normpath(subdir))
|
|
with open(Path(subdir) / file, "r") as f:
|
|
# Load the JSON data from the file
|
|
json_data = json.load(f)
|
|
converted_data = Report.parse_obj(json_data)
|
|
# get the last directory name in the path as key
|
|
reports_data[subdir_name] = converted_data
|
|
|
|
return reports_data
|
|
|
|
|
|
def get_agent_category(report: Report) -> dict[str, Any]:
|
|
categories: dict[str, Any] = {}
|
|
|
|
def get_highest_category_difficulty(data: Test) -> None:
|
|
for category in data.category:
|
|
if (
|
|
category == "interface"
|
|
or category == "iterate"
|
|
or category == "product_advisor"
|
|
):
|
|
continue
|
|
categories.setdefault(category, 0)
|
|
if data.metrics.success:
|
|
num_dif = STRING_DIFFICULTY_MAP[data.metrics.difficulty]
|
|
if num_dif > categories[category]:
|
|
categories[category] = num_dif
|
|
|
|
for _, test_data in report.tests.items():
|
|
get_highest_category_difficulty(test_data)
|
|
|
|
return categories
|
|
|
|
|
|
def all_agent_categories(reports_data: dict[str, Any]) -> dict[str, Any]:
|
|
all_categories: dict[str, Any] = {}
|
|
|
|
for name, report in reports_data.items():
|
|
categories = get_agent_category(report)
|
|
if categories: # only add to all_categories if categories is not empty
|
|
print(f"Adding {name}: {categories}")
|
|
all_categories[name] = categories
|
|
|
|
return all_categories
|