From becae6fa94d6d6817545d7852e5eccbfce531b84 Mon Sep 17 00:00:00 2001 From: Sweaterdog Date: Thu, 27 Feb 2025 21:07:55 -0800 Subject: [PATCH] Update example_tasks.json Fixed example tasks.json --- example_tasks.json | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/example_tasks.json b/example_tasks.json index 69ab550..f2b83a9 100644 --- a/example_tasks.json +++ b/example_tasks.json @@ -44,6 +44,7 @@ }, "multiagent_techtree_1_stone_pickaxe": { "conversation": "Let's collaborate to build a stone pickaxe", + "goal": "Build a stone pickaxe", "agent_count": 2, "initial_inventory": { "0": { @@ -57,6 +58,23 @@ "number_of_target": 1, "type": "techtree", "timeout": 300 + }, + "multiagent_techtree_1_shears": { + "goal": "Collaborate with other agents to build a shear.", + "conversation": "Let's collaborate to build a shear.", + "agent_count": 2, + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + } + }, + "target": "shears", + "number_of_target": 1, + "type": "techtree", + "timeout": 60 }, "smelt_ingot": { "goal": "Smelt 1 iron ingot and 1 copper ingot", @@ -71,5 +89,24 @@ "number_of_target": 1, "type": "techtree", "timeout": 300 + }, + "multiagent_smelt_ingot": { + "conversation": "Let's collaborate to smelt ingots", + "goal": "Smelt 1 iron ingot and 1 copper ingot, use star emojis in every response", + "agent_count": 2, + "initial_inventory": { + "0": { + "furnace": 1, + "coal": 2 + }, + "1": { + "raw_iron": 1, + "raw_copper": 1 + } + }, + "target": "copper_ingot", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 } -} \ No newline at end of file +}