From 088b71a99aa8a7fd7b2258a2c9f97346ff1f4ca7 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 9 Jun 2025 01:35:18 -0500 Subject: [PATCH] more friendly messages in the python evaluation script to make it more easy for the users to understand what is happening --- tasks/evaluation_script.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tasks/evaluation_script.py b/tasks/evaluation_script.py index cb380f5..4b5cb3c 100644 --- a/tasks/evaluation_script.py +++ b/tasks/evaluation_script.py @@ -179,7 +179,8 @@ def check_folder_results(folder_path): # Print summary print("\n=== Evaluation Results ===") - print(f"Total tasks evaluated: {results['total']}") + print("\nEvaluating Tasks!") + print(f"Results so far: {results['total']}") if "construction" not in folder_path: print(f"Successful tasks: {results['successful']}") @@ -517,7 +518,7 @@ def make_ops(agent_names, session_name): if agents_op: print("Agents are operators! You are good to go :D") else: - print("Agents are not operators! Something went wrong :(") + print("Agents are not operators! We will need to try making them operators again!") make_ops(agent_names, session_name) def check_agent_ops(agent_names, ops_file="ops.json"):