From c637e37de5436626a80ee17a6258cff222f205d8 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 23 Mar 2025 21:02:16 -0500 Subject: [PATCH] fix evaluation script for 4 agents --- evaluation_script.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index e2fbf16..34a0b6e 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -334,8 +334,8 @@ def launch_server_experiment(task_path, agent_names = [] for i in range(num_agents): agent_names.append(f"Agent_{i}_{session_name}") - models = [model] * 3 - apis = [api] * 3 + models = [model] * num_agents + apis = [api] * num_agents make_profiles(agent_names, models, apis, template_profile=template_profile, url=url) agent_profiles = [f"./{agent}.json" for agent in agent_names]