mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-07-01 06:05:19 +02:00
fix evaluation script for 4 agents
This commit is contained in:
parent
a6f9392b81
commit
c637e37de5
1 changed files with 2 additions and 2 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Reference in a new issue