fix evaluation script for 4 agents

This commit is contained in:
Isadora White 2025-03-23 21:02:16 -05:00
parent a6f9392b81
commit c637e37de5

View file

@ -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]