aboutsummaryrefslogtreecommitdiff
path: root/benchmark/agbenchmark/reports/processing/process_report.py
blob: 3bb94f9e36b33b32af277ad24e3d2cf78753b9a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import json
import logging
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

logger = logging.getLogger(__name__)


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_highest_achieved_difficulty_per_category(report: Report) -> dict[str, Any]:
    categories: dict[str, Any] = {}

    for _, test_data in report.tests.items():
        for category in test_data.category:
            if category in ("interface", "iterate", "product_advisor"):
                continue
            categories.setdefault(category, 0)
            if (
                test_data.results
                and all(r.success for r in test_data.results)
                and test_data.difficulty
            ):
                num_dif = STRING_DIFFICULTY_MAP[test_data.difficulty]
                if num_dif > categories[category]:
                    categories[category] = num_dif

    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_highest_achieved_difficulty_per_category(report)
        if categories:  # only add to all_categories if categories is not empty
            logger.debug(f"Adding {name}: {categories}")
            all_categories[name] = categories

    return all_categories