Files
Auto-GPT/benchmark/agbenchmark/reports/reports.py
2023-09-13 11:56:31 +02:00

225 lines
7.5 KiB
Python

import json
import os
import sys
from pathlib import Path
from typing import Any, Dict
from agbenchmark import (
INFO_MANAGER,
INTERNAL_INFO_MANAGER,
REGRESSION_MANAGER,
get_agent_benchmark_config,
)
from agbenchmark.utils.data_types import DifficultyLevel
from agbenchmark.utils.get_data_from_helicone import get_data_from_helicone
from agbenchmark.utils.utils import (
calculate_success_percentage,
get_highest_success_difficulty,
get_test_path,
)
def get_previous_test_results(
test_name: str, info_details: dict[str, Any]
) -> list[bool]:
agent_tests: dict[str, list[bool]] = {}
mock = "--mock" in sys.argv # Check if --mock is in sys.argv
prev_test_results = INTERNAL_INFO_MANAGER.tests.get(test_name, [])
if not mock:
# only add if it's an actual test
prev_test_results.append(info_details["metrics"]["success"])
INTERNAL_INFO_MANAGER.add_test(test_name, prev_test_results)
# can calculate success rate regardless of mock
info_details["metrics"]["success_%"] = calculate_success_percentage(
prev_test_results
)
return prev_test_results
def update_regression_tests(
prev_test_results: list[bool],
info_details: dict,
test_name: str,
test_details: dict,
) -> None:
if len(prev_test_results) >= 3 and prev_test_results[-3:] == [True, True, True]:
# if the last 3 tests were successful, add to the regression tests
info_details["is_regression"] = True
REGRESSION_MANAGER.add_test(test_name, test_details)
def generate_single_call_report(
item: Any, call: Any, challenge_data: dict[str, Any], answers: dict[str, Any]
) -> None:
try:
difficulty = challenge_data["info"]["difficulty"]
except KeyError:
return None
if isinstance(difficulty, DifficultyLevel):
difficulty = difficulty.value
# Extract the challenge_location from the class
challenge_location: str = getattr(item.cls, "CHALLENGE_LOCATION", "")
test_name = item.nodeid.split("::")[1]
item.test_name = test_name
test_details = {
"difficulty": difficulty,
"data_path": challenge_location,
}
info_details: Any = {
"data_path": challenge_location,
"is_regression": False,
"category": challenge_data["category"],
"task": challenge_data["task"],
"answer": challenge_data["ground"]["answer"],
"description": challenge_data["info"]["description"],
"metrics": {
"difficulty": difficulty,
"success": False,
"attempted": True,
},
# "answers": answers,
}
if answers:
info_details["answers"] = answers
if "metadata" in challenge_data:
info_details["metadata"] = challenge_data["metadata"]
mock = "--mock" in sys.argv # Check if --mock is in sys.argv
if call.excinfo is None:
info_details["metrics"]["success"] = True
else:
if not mock: # don't remove if it's a mock test
REGRESSION_MANAGER.remove_test(test_name)
info_details["metrics"]["fail_reason"] = str(call.excinfo.value)
if call.excinfo.typename == "Skipped":
info_details["metrics"]["attempted"] = False
prev_test_results: list[bool] = get_previous_test_results(test_name, info_details)
update_regression_tests(prev_test_results, info_details, test_name, test_details)
# user facing reporting
item.info_details = info_details
def finalize_reports(item: Any, challenge_data: dict[str, Any]) -> None:
run_time = dict(item.user_properties).get("run_time")
info_details = getattr(item, "info_details", {})
test_name = getattr(item, "test_name", "")
if info_details and test_name:
if run_time is not None:
cost = None
if "--mock" not in sys.argv and os.environ.get("HELICONE_API_KEY"):
print("Getting cost from Helicone")
cost = get_data_from_helicone(test_name)
info_details["metrics"]["cost"] = cost
if info_details["metrics"].get("success", None) is None:
info_details["metrics"]["attempted"] = False
info_details["metrics"]["success"] = False
elif (
info_details["metrics"].get("success") is False
and "attempted" not in info_details["metrics"]
):
info_details["metrics"]["attempted"] = False
info_details["metrics"]["run_time"] = f"{str(round(run_time, 3))} seconds"
info_details["reached_cutoff"] = float(run_time) > challenge_data["cutoff"]
if "--mock" not in sys.argv:
update_challenges_already_beaten(info_details, test_name)
if info_details.get("tests") is not None:
for nested_test_name, nested_test_info in info_details[
"tests"
].items():
update_challenges_already_beaten(
nested_test_info, nested_test_name
)
INFO_MANAGER.add_test(test_name, info_details)
def update_challenges_already_beaten(
info_details: Dict[str, Any], test_name: str
) -> None:
current_run_successful = info_details["metrics"]["success"]
try:
with open("challenges_already_beaten.json", "r") as f:
challenge_data = json.load(f)
except:
challenge_data = {}
challenge_beaten_in_the_past = challenge_data.get(test_name)
challenge_data[test_name] = True
if challenge_beaten_in_the_past is None and not current_run_successful:
challenge_data[test_name] = False
with open("challenges_already_beaten.json", "w") as f:
json.dump(challenge_data, f, indent=4)
def generate_separate_suite_reports(suite_reports: dict) -> None:
for prefix, suite_file_datum in suite_reports.items():
successes = []
run_time = 0.0
data = {}
info_details: Any = {
"data_path": "",
"metrics": {
"percentage": 0,
"highest_difficulty": "",
"run_time": "0 seconds",
},
"tests": {},
}
for name in suite_file_datum:
test_data = INFO_MANAGER.tests[name] # get the individual test reports
data[name] = test_data # this is for calculating highest difficulty
INFO_MANAGER.remove_test(name)
successes.append(test_data["metrics"]["success"])
run_time += float(test_data["metrics"]["run_time"].split(" ")[0])
info_details["tests"][name] = test_data
info_details["metrics"]["percentage"] = round(
(sum(successes) / len(successes)) * 100, 2
)
info_details["metrics"]["run_time"] = f"{str(round(run_time, 3))} seconds"
info_details["metrics"]["highest_difficulty"] = get_highest_success_difficulty(
data, just_string=True
)
suite_path = (
Path(next(iter(data.values()))["data_path"]).resolve().parent.parent
)
info_details["data_path"] = get_test_path(suite_path)
INFO_MANAGER.add_test(prefix, info_details)
def session_finish(suite_reports: dict) -> None:
flags = "--test" in sys.argv or "--maintain" in sys.argv or "--improve" in sys.argv
if not flags:
generate_separate_suite_reports(suite_reports)
agent_benchmark_config = get_agent_benchmark_config()
INTERNAL_INFO_MANAGER.save()
INFO_MANAGER.end_info_report(agent_benchmark_config)
REGRESSION_MANAGER.save()