more friendly messages in the python evaluation script to make it more easy for the users to understand what is happening

This commit is contained in:
Isadora White 2025-06-09 01:35:18 -05:00
parent 1f11b3bf55
commit 088b71a99a

View file

@ -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"):